资源简介
JSP成长在线考试网源码使用Struts1 mysql实现,mysql导入sql文件,修改connDB.properties文件的数据库配置, 部署tomcat后,访问http://localhost:8080/Exam/。
代码片段和文件信息
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)) {
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-05-20 09:53 WebContent\
文件 793 2013-08-02 10:06 WebContent\copyright.jsp
目录 0 2019-05-20 09:53 WebContent\CSS\
文件 1979 2013-08-02 10:04 WebContent\CSS\st
文件 488 2013-08-02 10:06 WebContent\dealNull.jsp
文件 1257 2013-08-02 10:06 WebContent\default.jsp
文件 868 2013-08-02 10:06 WebContent\error.jsp
文件 2538 2013-08-02 10:06 WebContent\examRule.jsp
目录 0 2019-05-20 09:53 WebContent\Images\
文件 587 2013-08-02 10:04 WebContent\Images\add.gif
文件 49 2013-08-02 10:04 WebContent\Images\bg_01.gif
文件 115145 2013-08-02 10:04 WebContent\Images\default_bottom.JPG
文件 227556 2013-08-02 10:04 WebContent\Images\default_mid.JPG
文件 105753 2013-08-02 10:04 WebContent\Images\default_top.jpg
文件 19902 2013-08-02 10:04 WebContent\Images\error.jpg
文件 173 2013-08-02 10:04 WebContent\Images\f_ico.gif
文件 78893 2013-08-02 10:04 WebContent\Images\login_bottom.jpg
文件 52384 2013-08-02 10:04 WebContent\Images\login_mid.jpg
文件 102349 2013-08-02 10:04 WebContent\Images\login_top.jpg
文件 65 2013-08-02 10:04 WebContent\Images\m_ico.gif
文件 59 2013-08-02 10:04 WebContent\Images\m_ico1.gif
文件 76626 2013-08-02 10:04 WebContent\Images\m_login.jpg
文件 89527 2013-08-02 10:04 WebContent\Images\m_top.jpg
文件 3069 2013-08-02 10:04 WebContent\Images\seedPwd.gif
文件 13360 2013-08-02 10:04 WebContent\Images\startExam_bottom.jpg
文件 18469 2013-08-02 10:04 WebContent\Images\startExam_ico.jpg
文件 13318 2013-08-02 10:04 WebContent\Images\startExam_left.jpg
文件 14295 2013-08-02 10:04 WebContent\Images\startExam_leftBottom.jpg
文件 14310 2013-08-02 10:04 WebContent\Images\startExam_leftTop.jpg
文件 13322 2013-08-02 10:04 WebContent\Images\startExam_right.jpg
文件 14395 2013-08-02 10:04 WebContent\Images\startExam_rightBottom.jpg
............此处省略170个文件信息
相关资源
- jsp第二版耿祥义教材源代码
- SSH在线考试系统源码(附数据库脚本
- JSP网络编程从入门到精通(随书源码
- jssip
- jsp应用与开发技术第8章源代码(附数
- jsp任务调动系统的设计与实现(源码
- 微博系统(Java源码,servlet+jsp+数据库
- jsp智能种植系统低配版(附数据库脚
- jsp学生信息管理系统(源码+数据库脚
- jsp医院预约挂号系统(源码+数据库脚
- jsp信贷管理系统(源码+数据库脚本)
- Android开发中相当便捷的JSON反序列化实
- jsp+mysql购物商城系统
- ssh2+mysql实现crm客户管理系统.zip
- 网上订餐系统JavaWeb,jsp,spring等
- 基于Servlet+Jsp的电商平台
- 酒店点餐系统
- 视频在线播放java源码
- 商城 前台 +后台模板前台的比较全
- ssm 在线问卷调查
- jsp实现团购网站前后台及oracle脚本
- java web在线考试系统SSH框架源代码含数
- 《JSP项目开发案例全程实录》12个的完
- JSP & Servlet学习笔记(第2版).pdf
- JSP课程设计案例精编-源代码.
- 2Java+MySQL开发的《在线考试系统》.r
- Struts2SpringHibernate整合一个HelloWorld版的
- jsp企业员工管理系统
- jsp+ssm+mysql在线考试系统包含源码 数据
- 在线考试系统JSP-mysql
评论
共有 条评论