资源简介
成长在线考试网
数据库是mysql
资源中有可以直接导入的sql文件
还有使用说明
分享出来希望对大家有所帮助
代码片段和文件信息
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“);
}
}
//准备考试
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1041 2011-02-14 17:11 06 成长在线考试网\.classpath
文件 280 2011-02-12 15:58 06 成长在线考试网\.myme
文件 1408 2011-02-12 15:55 06 成长在线考试网\.project
文件 500 2011-02-12 15:45 06 成长在线考试网\.settings\.jsdtscope
文件 1040 2011-02-12 15:58 06 成长在线考试网\.settings\com.genuitec.eclipse.j2eedt.core.prefs
文件 629 2011-02-12 15:58 06 成长在线考试网\.settings\org.eclipse.jdt.core.prefs
文件 137 2011-02-12 15:58 06 成长在线考试网\.settings\org.eclipse.ltk.core.refactoring.prefs
文件 49 2011-02-12 15:45 06 成长在线考试网\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2011-02-12 15:45 06 成长在线考试网\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 184 2011-02-14 13:44 06 成长在线考试网\src\com\connDB.properties
文件 3538 2007-12-27 09:07 06 成长在线考试网\src\com\wgh\action\Lesson.java
文件 4167 2007-12-13 13:37 06 成长在线考试网\src\com\wgh\action\Manager.java
文件 4537 2007-12-28 14:57 06 成长在线考试网\src\com\wgh\action\Questions.java
文件 531 2007-12-12 14:34 06 成长在线考试网\src\com\wgh\action\SelfRequestProcessor.java
文件 6941 2007-12-28 14:21 06 成长在线考试网\src\com\wgh\action\StartExam.java
文件 5545 2007-12-28 14:14 06 成长在线考试网\src\com\wgh\action\Student.java
文件 1819 2007-12-07 19:07 06 成长在线考试网\src\com\wgh\action\StuResult.java
文件 3858 2007-12-24 10:16 06 成长在线考试网\src\com\wgh\action\TaoTi.java
文件 760 2007-12-22 22:20 06 成长在线考试网\src\com\wgh\action\temp.java
文件 870 2007-12-14 16:43 06 成长在线考试网\src\com\wgh\actionForm\LessonForm.java
文件 682 2007-12-13 14:30 06 成长在线考试网\src\com\wgh\actionForm\ManagerForm.java
文件 246 2007-12-21 15:57 06 成长在线考试网\src\com\wgh\actionForm\MoreSelect.java
文件 419 2007-12-17 18:23 06 成长在线考试网\src\com\wgh\actionForm\QueryResultIfForm.java
文件 3706 2007-12-28 18:55 06 成长在线考试网\src\com\wgh\actionForm\QuestionsForm.java
文件 2164 2007-12-08 12:58 06 成长在线考试网\src\com\wgh\actionForm\StudentForm.java
文件 1338 2007-12-17 18:23 06 成长在线考试网\src\com\wgh\actionForm\StuResultForm.java
文件 1079 2007-12-20 14:48 06 成长在线考试网\src\com\wgh\actionForm\TaoTiForm.java
文件 1056 2007-12-25 12:56 06 成长在线考试网\src\com\wgh\core\ChStr.java
文件 3426 2011-02-12 16:11 06 成长在线考试网\src\com\wgh\core\ConnDB.java
文件 4199 2007-12-29 17:21 06 成长在线考试网\src\com\wgh\dao\LessonDAO.java
............此处省略171个文件信息
- 上一篇:教你如何手工注入网站详细
- 下一篇:QC10+SQL2005安装图解
评论
共有 条评论