• 大小: 5.2MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-11
  • 语言: Java
  • 标签: java  web  jsp  eclips  Tomca  

资源简介

(1)单击“管理员信息管理”按钮,对管理员信息进行添加、修改及删除操作。 (2)单击“考生信息管理”按钮,对考生信息进行查看及删除操作。 注意:如果该考生已经考过试,那么该考生的信息无法删除。 (3)单击“考生成绩查询”按钮,对所有考生的成绩进行查询操作。 (4)单击“课程信息管理”按钮,对课程信息进行添加、查看及删除操作。 (5)单击“套题信息管理”按钮,对套题信息进行添加、修改及删除操作。 (6)单击“考试题目管理”按钮,对考试题目信息进行添加、修改及删除操作。 (7)单击“退出后台管理”按钮,退出后台管理操作界面。 数据库安装 ; c+ e+ d+ N; D (1)将Database文件夹中的扩展名为db_netExam_Data.MDF和db_netExam_Log.LDF的两个文件拷贝到SQL Server安装路径下的Data文件夹中。 (2)打开SQL Server 2005中的“企业管理器”,然后展开本地服务器,在“数据库”数据项上单击鼠标右键,在弹出的快捷菜单中选择“所有任务”/“附加数据库”菜单项。 (3)将弹出“附加数据库”对话框,在该对话框中单击【 】按钮,选择所要附加数据库的db_netExam_Data.MDF文件,单击【确定】按钮,即可完成数据库的附加操作。

资源截图

代码片段和文件信息

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  2013-08-02 13:15  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\
     目录           0  2013-08-02 13:11  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\
     文件         836  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.classpath
     文件        1037  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.project
     目录           0  2013-08-02 13:11  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\
     文件         503  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\.jsdtscope
     文件         395  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\org.eclipse.jdt.core.prefs
     文件         442  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\org.eclipse.wst.common.component
     文件         345  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2013-08-02 10:02  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2013-08-02 13:11  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\
     目录           0  2013-08-02 13:11  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\CSS\
     文件        1979  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\CSS\style.css
     目录           0  2013-08-02 13:11  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\
     文件       92160  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\Thumbs.db
     文件         587  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\add.gif
     文件          49  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\bg_01.gif
     文件      115145  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\default_bottom.JPG
     文件      227556  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\default_mid.JPG
     文件      105753  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\default_top.jpg
     文件       19902  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\error.jpg
     文件         173  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\f_ico.gif
     文件       78893  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\login_bottom.jpg
     文件       52384  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\login_mid.jpg
     文件      102349  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\login_top.jpg
     文件          65  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\m_ico.gif
     文件          59  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\m_ico1.gif
     文件       76626  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\m_login.jpg
     文件       89527  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\m_top.jpg
     文件        3069  2013-08-02 10:04  javaweb在线测试系统源码项目+数据库文件(导入可直接使用)\Exam\WebContent\Images\seedPwd.gif
............此处省略170个文件信息

评论

共有 条评论