• 大小: 2.81MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-14
  • 语言: Java
  • 标签: J2EE开发  

资源简介

这是一个对学生学习开发java web的源码(代码编写不易,1分资源不过分),里面是jsp+Servlet利用mvc模式写的一个后台图书管理系统,里面有数据库sql,直接添加就可以。

资源截图

代码片段和文件信息

package com.biyeseng.action;

import java.io.IOException;
import java.io.PrintWriter;
import java.sql.*;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.biyeseng.db.DBManager;

/**
 * 添加管理员
 * @author biyeseng
 * @company www.biyeseng.cn
 *
 */
public class AddAdminAction extends HttpServlet {

/**
 * Constructor of the object.
 */
public AddAdminAction() {
super();
}

/**
 * Destruction of the servlet. 

 */
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}

/**
 * The doPost method of the servlet. 

 *
 * This method is called when a form has its tag value method equals to post.
 * 
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {

response.setContentType(“text/html“);
PrintWriter out = response.getWriter();
String userName=request.getParameter(“userName“);
String userPw=request.getParameter(“userPw“);

String sex=request.getParameter(“sex“);
String tel=request.getParameter(“tel“);
String duty=““;
String birth=request.getParameter(“birth“);
String ruzhi=request.getParameter(“ruzhi“);
String type=request.getParameter(“type“);

DBManager dbm = new DBManager();

String sql = “insert into admin(userNameuserPwsextelbirthruzhitype) values(‘“+userName+“‘‘“+userPw+“‘‘“+sex+“‘‘“+tel+“‘‘“+birth+“‘‘“+ruzhi+“‘‘“+type+“‘)“;

Statement stat = null;
Connection conn=null;
try {
conn=dbm.getConnection();
stat = conn.createStatement();
System.out.println(sql);
stat.execute(sql);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if(stat!=null)
stat.close();
if(conn!=null)
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
response.sendRedirect(“admin/list.jsp“);
out.flush();
out.close();
}

/**
 * Initialization of the servlet. 

 *
 * @throws ServletException if an error occurs
 */
public void init() throws ServletException {
// Put your code here
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-01-13 14:27  图书馆管理系统\
     目录           0  2016-12-05 21:06  图书馆管理系统\tsgglxt\
     文件        1610  2016-12-05 19:43  图书馆管理系统\tsgglxt\.classpath
     目录           0  2017-01-13 14:27  图书馆管理系统\tsgglxt\.myeclipse\
     文件         295  2016-09-19 13:01  图书馆管理系统\tsgglxt\.mymetadata
     文件        1617  2016-12-05 19:43  图书馆管理系统\tsgglxt\.project
     目录           0  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\
     文件         522  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\.jsdtscope
     文件        1040  2015-03-30 15:53  图书馆管理系统\tsgglxt\.settings\com.genuitec.eclipse.j2eedt.core.prefs
     文件         423  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\com.genuitec.eclipse.migration.prefs
     文件         200  2016-12-05 19:47  图书馆管理系统\tsgglxt\.settings\org.eclipse.core.resources.prefs
     文件         629  2015-10-12 08:25  图书馆管理系统\tsgglxt\.settings\org.eclipse.jdt.core.prefs
     文件         549  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\org.eclipse.wst.common.component
     文件         412  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2016-12-05 19:43  图书馆管理系统\tsgglxt\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2016-12-05 19:41  图书馆管理系统\tsgglxt\WebRoot\
     目录           0  2016-09-29 16:50  图书馆管理系统\tsgglxt\WebRoot\meta-INF\
     文件          36  2014-03-15 08:35  图书馆管理系统\tsgglxt\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2016-12-05 19:41  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\
     目录           0  2017-01-13 14:25  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\classes\
     目录           0  2016-12-05 20:40  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\classes\com\
     目录           0  2017-01-13 14:27  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\classes\com\biyeseng\
     目录           0  2016-09-29 16:50  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\
     文件       59590  2014-03-15 12:01  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\commons-fileupload-1.2.2.jar
     文件      159509  2014-03-15 12:04  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\commons-io-2.0.1.jar
     文件       14334  2014-11-23 21:02  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\jspsmartupload.jar
     文件      495944  2015-10-12 08:40  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\mysql-connector-java-5.0.4-bin.jar
     文件      697910  2015-04-15 23:30  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\lib\poi-2.5.1.jar
     文件        4298  2016-09-19 14:33  图书馆管理系统\tsgglxt\WebRoot\WEB-INF\web.xml
     目录           0  2016-12-05 19:41  图书馆管理系统\tsgglxt\WebRoot\admin\
............此处省略447个文件信息

评论

共有 条评论