• 回答数

    4

  • 浏览数

    264

UPSILON宇普西龙
首页 > 学术期刊 > 知网论文选题双选

4个回答 默认排序
  • 默认排序
  • 按时间排序

小鱼qt1988

已采纳

中国知网表示,为确保本届毕业生论文工作顺利完成,为有需要的高校免费开通" 中国知网" 毕业设计( 论文) 管理系统。知网将提供与正式用户同等的服务和保障,直至本届毕业生论文工作完成。中国知网毕业设计( 论文) 管理系统采用云平台服务方式,可以支持高校论文管理的全过程在网上开展,包括拟题选题、师生双选、开题、论文撰写和指导、初期和中期检查、论文答辩、推优评选等,具备文档原版显示和批注功能,支持电脑、手机多客户端使用,教师和学生无需到校就能完成学位论文全部工作,对于教务管理者,全过程都可以实现网上管理、实时掌握,并以电子档案盒的方式完整导出归档。另根据成都商报的报道,原本的文章购买方式是个人充值,现在知网采取了赠送体验券的形式,用户拨打客服电话进行索要,即可获得10元体验券,体验券有效期两周左右。而体验券是否为一次性申领、预计投放数量等问题还在研讨当中。

234 评论

123老吃客

1. 项目背景 以往本科生和指导教师在进行毕业设计(论文)选题工作时,学院基本是按照“定导师定题目-定学生”的流程操作,在导师和题目确定后将本科毕业设计(2. 使用说明 1、登录网站:辽宁科技大学--材冶学院--本科生培养--毕业设计双选 2、登录类别

212 评论

绿草泱泱

毕业论文选题系统是基于微信小程序,后端是基于java编程语言,ssm框架,mysql数据库和IDEA工具开发,本系统分为学生,教师,管理员三个角色;学生可以注册登陆系统,查看系统公告,选课论文课题,提交课题论文,查看论文审核,答辩结果等信息;教师可以发布课题,审核学生论文,课题答辩结果,在线回复学生留言;管理员对学生,教师,公告,论文,选题,答辩等进行管理;本系统功能齐全,文档齐全,适合作为微信小程序毕业设计来参考和学习。一.技术环境jdk版本:1.8 及以上ide工具:IDEA ,微信小程序开发工具数据库: mysql5.7 (必须5.7)编程语言: Javatomcat: 8.0 及以上java框架:SSMmaven: 3.6.1前端:layui ,微信详细技术:HTML+CSS+JS+JSP+JAVA+SSM+MYSQL+JQUERY+MAVEN+微信开发工具二.项目文件(项目获取请看文末官网)在这里插入图片描述三.系统功能在这里插入图片描述四.代码示例package com.lmu.controller;/** * 和登陆有关的都在这里 */import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionSupport;import com.lmu.model.Role;import com.lmu.model.User;import com.lmu.service.RoleService;import com.lmu.service.UserService;import com.lmu.utils.JsonUtils;import com.lmu.utils.UserUtils;import org.apache.commons.collections.map.HashedMap;import org.apache.struts2.ServletActionContext;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Scope;import org.springframework.stereotype.Controller;import java.io.IOException;import java.util.HashMap;import java.util.Map;@Controller("loginController")@Scope("prototype")public class LoginController extends ActionSupport { @Autowired private UserService userService; @Autowired private RoleService roleService; private User user; private Map map = new HashMap(); public User getUser() { return user; } public void setUser(User user) { this.user = user; } public UserService getUserService() { return userService; } public void setUserService(UserService userService) { this.userService = userService; } /** * 用户登陆 * @return */ public void index() throws IOException { User user1 = userService.getUser(user); if (user1 != null){ if (user1.getIsSh() == 1){ if (user1.getRole().getEnName().equals("admin")){ ActionContext.getContext().getSession().put("user", user1); } if (user1.getRole().getEnName().equals("js")){ ActionContext.getContext().getSession().put("user1", user1); } if (user1.getRole().getEnName().equals("xs")){ ActionContext.getContext().getSession().put("user2", user1); } map.put("flag", 1); map.put("url", "login_indexs.do"); map.put("id", user1.getId()); JsonUtils.toJson(map); } else { map.put("flag", 2); JsonUtils.toJson(map); } } else { map.put("flag", 3); JsonUtils.toJson(map); } } public String indexs() throws IOException { User u = UserUtils.getUser(); if (u != null){ ActionContext.getContext().put("user", u); String ss = u.getRole().getEnName(); ActionContext.getContext().put("role", u.getRole().getEnName()); } return SUCCESS; } //登陆页面 public String login() { return SUCCESS; } //退出 public String tuichu() { ActionContext ac = ActionContext.getContext(); Map session = ac.getSession(); session.remove("userName"); session.remove("userId"); ServletActionContext.getRequest().getSession().invalidate(); return "login"; }}package com.lmu.controller;/** * 用户新增 */import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionSupport;import com.opensymphony.xwork2.ModelDriven;import com.lmu.model.Role;import com.lmu.model.User;import com.lmu.service.RoleService;import com.lmu.service.UserService;import com.lmu.utils.JsonUtils;import com.lmu.utils.Pager;import com.lmu.utils.UserUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Scope;import org.springframework.stereotype.Controller;import java.awt.event.FocusEvent;import java.io.IOException;import java.util.Date;import java.util.HashMap;import java.util.Map;@Controller("userController")@Scope("prototype")public class UserController extends ActionSupport implements ModelDriven { @Autowired private UserService userService; @Autowired private RoleService roleService; private User user; private Integer userId; private Map map = new HashMap();/** * list * * @return */ public String list() throws IOException { User user1 = UserUtils.getUser(); if (user1 == null || user1.getId() == null){ ActionContext.getContext().put("login", 1); return SUCCESS; } Pager pagers = null; Role role = user1.getRole(); if (role.getEnName().equals("admin")) { pagers = userService.getList(user); ActionContext.getContext().put("pagers", pagers); ActionContext.getContext().put("user", user1); ActionContext.getContext().put("role", role); ActionContext.getContext().put("bean", user); return SUCCESS; } else if (role.getEnName().equals("xs") || role.getEnName().equals("js")) { pagers = userService.getList(user1); ActionContext.getContext().put("pagers", pagers); ActionContext.getContext().put("bean", user); return SUCCESS; } return null; }/** * 跳转add * * @return */ public String add() { Pager pagers = roleService.pagers(); ActionContext.getContext().put("pagers", pagers); return SUCCESS; } /** * 查询修改 * * @return */ public String edit() { User bean = userService.findById(userId); Pager pagers = roleService.pagers(); ActionContext.getContext().put("bean", bean); ActionContext.getContext().put("pagers", pagers); return SUCCESS; }/** * 审核 * * @return */ public void updateSh() throws IOException { user.setIsSh(1); userService.updates(user); map.put("flag", true); map.put("url", "user_list.do"); JsonUtils.toJson(map); } /** * 更新 * * @return */ public String update() throws IOException { if (user.getPass().equals("")){ user.setPass(null); } userService.updates(user); map.put("flag", true); map.put("url", "user_list.do"); JsonUtils.toJson(map); return SUCCESS; } /** * 保存 * * @return */ public void save() throws IOException { if (userService.getUser(user) != null){ map.put("flag", false); map.put("url", "login_login.do"); JsonUtils.toJson(map); } else { user.setTime(new Date()); userService.save(user); map.put("flag", true); map.put("url", "login_login.do"); JsonUtils.toJson(map); } } public void delete() throws IOException { User user1 = userService.findById(userId); user1.setIsDelete(1); userService.update(user1); map.put("flag", true); map.put("url", "user_list.do"); JsonUtils.toJson(map); } @Override public User getModel() { if (user == null) { user = new User(); } return user; } public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public User getUser() { return user; } public void setUser(User user) { this.user = user; }}

106 评论

大毛毛豆豆

论文双选小程序的话,你需要通过审核程序,需要在javac软件上创作

175 评论

相关问答

  • 知网官网论文选题

    电脑:华为MateBook14 系统:Windows10 软件:本地设置10.0 浏览器:QQ浏览器10.1.0.6331 1、首先进入浏览器网页搜索“中国知网

    小盆友2鸣儿 4人参与回答 2023-12-06
  • 知网论文语言类选题

    语言学被普遍定义为对语言的一种科学化、系统化的理论研究。那语言学的论文题目要怎么选呢?下面我将为你推荐语言学论文选题的内容,希望能够帮到你! 1、论修辞的定义及

    xiaoze2000 4人参与回答 2023-12-11
  • 知网怎么找论文选题

    用户需要进入知网首页,在首页的检索栏中输入论文标题,或者点击检索栏右边的高级检索按钮。根据自己的需求设置对应的搜索条件,点击检索后即可查找到相关论文资料。知网的

    辉煌人生 3人参与回答 2023-12-09
  • 知网怎么修改论文选题

    目前,高校对于硕博士论文,需要通过抄袭检测系统的检测才能算过关。对本科生来说,大部分学校也采取抽查的方式对本科论文进行检测。抄袭过多,一经查出超过30%,后果严

    Miko米粒 3人参与回答 2023-12-11
  • 知网论文选择

    1. 打开百度浏览器,进入浏览器以后,在百度搜索【中国知网】,中国知网右面有【官网】认证的才是真的,然后点击进入,打开中国知网网站2. 进入到中国知网的官网以后

    乖乖纯00 4人参与回答 2023-12-08