资源简介
java web开源项目在线考试系统,配置环境连接在此资源的txt文档中
代码片段和文件信息
package com.wgh.action;
import java.util.List;
import javax.servlet.http.*;
import org.apache.struts.action.*;
import com.wgh.actionForm.LessonForm;
import com.wgh.dao.LessonDAO;
public class Lesson extends Action {
private LessonDAO lessonDAO = null;
public Lesson() {
this.lessonDAO = new LessonDAO();
}
public ActionForward execute(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String action = request.getParameter(“action“);
System.out.println(“获取的查询字符串:“ + action);
if (action == null || ““.equals(action)) {
return mapping.findForward(“error“);
} else if (“lessonQuery“.equals(action)) {
return lessonQuery(mapping form request response);
} else if (“lessonAdd“.equals(action)) {
return lessonAdd(mapping form request response);
} else if (“lessonDel“.equals(action)) {
return lessonDel(mapping form request response);
}else if(“selectLesson“.equals(action)){
return selectLesson(mapping form request response);
}else if(“ready“.equals(action)){
return ready(mapping form request response);
}
request.setAttribute(“error“ “操作失败!“);
return mapping.findForward(“error“);
}
// 查询课程信息
private ActionForward lessonQuery(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
request.setAttribute(“lessonQuery“ lessonDAO.query(0));
return mapping.findForward(“lessonQuery“);
}
// 添加课程
private ActionForward lessonAdd(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
LessonForm lessonForm = (LessonForm) form;
int ret = lessonDAO.insert(lessonForm);
System.out.println(“返回值ret:“ + ret);
if (ret == 1) {
return mapping.findForward(“lessonAdd“);
} else if (ret == 2) {
request.setAttribute(“error“ “该课程已经添加!“);
return mapping.findForward(“error“);
} else {
request.setAttribute(“error“ “添加课程失败!“);
return mapping.findForward(“error“);
}
}
// 删除课程
private ActionForward lessonDel(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
LessonForm lessonForm = (LessonForm) form;
int ret = lessonDAO.delete(lessonForm);
if (ret == 0) {
request.setAttribute(“error“ “删除课程失败!“);
return mapping.findForward(“error“);
} else {
return mapping.findForward(“lessonDel“);
}
}
//在线考试时选择课程
private ActionForward selectLesson(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
HttpSession session = request.getSession();
String stu=session.getAttribute(“student“).toString(); //获取准考证号
List list=lessonDAO.query(stu); //查询包括考试题目的课程列表,但不包括已经考过的科目
if(list.size()<1){
return mapping.findForward(“noenLesson“);
}else{
request.setAttribute(“lessonList“list);
return mapping.findForward(“selectLesson“);
}
}
//准备考试
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-05-23 00:10 java web开源项目在线考试系统\
文件 7129 2013-08-02 13:12 java web开源项目在线考试系统\db_exam.sql
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\
文件 836 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.classpath
文件 1037 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.project
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\.settings\
文件 503 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\.jsdtscope
文件 395 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\org.eclipse.jdt.core.prefs
文件 442 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\org.eclipse.wst.common.component
文件 345 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2013-08-02 10:02 java web开源项目在线考试系统\Exam\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\classes\
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\classes\com\
文件 110 2013-08-02 10:08 java web开源项目在线考试系统\Exam\build\classes\com\connDB.properties
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\classes\com\wgh\
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\classes\com\wgh\action\
目录 0 2013-08-02 13:11 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\
文件 1320 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\LessonForm.class
文件 1125 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\ManagerForm.class
文件 599 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\MoreSelect.class
文件 771 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\QueryResultIfForm.class
文件 4814 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\QuestionsForm.class
文件 2622 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\StudentForm.class
文件 1808 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\StuResultForm.class
文件 1720 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\actionForm\TaoTiForm.class
文件 3975 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\action\Lesson.class
文件 4326 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\action\Manager.class
文件 4145 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\action\Questions.class
文件 933 2013-08-02 10:06 java web开源项目在线考试系统\Exam\build\classes\com\wgh\action\SelfRequestProcessor.class
............此处省略170个文件信息
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- websockets实现tomcat日志在线输出
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
评论
共有 条评论