• 大小: 2.71MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-11
  • 语言: Java
  • 标签: JSP户  

资源简介

摘要:为了提高户籍管理工作效率,使户籍工作者从繁忙的手工劳动中解放出来。采用JSP技术和SQLServer相结合,设计了一个户籍管理系统,整个系统基于mvc模式,采用Tomcat服务器。户籍工作者能够通过浏览器,登陆系统,进行户口添加、删除、修改;进行居民小组设置和统计报表等工作。管理员能够修改、添加、冻结系统用户。它应用在日常户籍管理工作中能有效的帮助户籍工作者开展工作。    关键词:户籍管理系统;信息管理;JSP技术

资源截图

代码片段和文件信息

package com.action;
/**
 * 管理员登陆 增加 修改 删除 删除登陆日志
 */
import java.io.IOException;
import java.util.List;
import java.util.StringTokenizer;

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

import com.bean.AdminBean;
import com.bean.SystemBean;
import com.util.Constant;
import com.util.MD5;

public class AdminServlet extends HttpServlet {

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

/**
 * Destruction of the servlet. 

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

/**
 * The doGet method of the servlet. 

 *
 * This method is called when a form has its tag value method equals to get.
 * 
 * @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 doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {

doPost(requestresponse);
}

/**
 * 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(Constant.CONTENTTYPE);
request.setCharacterEncoding(Constant.CHARACTERENCODING);
try{
String method=request.getParameter(“method“).trim();
AdminBean loginbean = new AdminBean();
HttpSession session = request.getSession();
session.setMaxInactiveInterval(1200);
SystemBean systembean = new SystemBean();
String sysdir = systembean.getDir();
if(method.equals(“one“)){//admin登录
String username = request.getParameter(“username“);
String password = request.getParameter(“password“);
if(username == null||username.trim().equals(““)){
request.setAttribute(“message“ “请正确输入用户名!“);
request.getRequestDispatcher(“index.jsp“).forward(request response);
}
else if(password == null||password.trim().equals(““)){
request.setAttribute(“message“ “请输入密码!“);
request.getRequestDispatcher(“index.jsp“).forward(request response);
}
else{
String md5password = MD5.MD5(password);
String agent = request.getHeader(“user-agent“); 
StringTokenizer st = new StringTokenizer(agent“;“); 
String useros=st.nextToken();
String loginip = request.getRemoteAddr();

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-06-26 18:34  基于JSP的户籍管理系统\
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\
     文件         938  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.classpath
     目录           0  2013-06-26 18:48  基于JSP的户籍管理系统\hjgl\.myeclipse\
     文件         285  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.mymetadata
     文件        1687  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.project
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\.settings\
     文件         500  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\.jsdtscope
     文件         334  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\org.eclipse.jdt.core.prefs
     文件         450  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\org.eclipse.wst.common.component
     文件         252  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\
     文件        5730  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\FCKeditor.tld
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\meta-INF\
     文件          39  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\action\
     文件        6917  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\action\AdminServlet.class
     文件        5938  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\action\PayServlet.class
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\bean\
     文件        7586  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\bean\AdminBean.class
     文件        9094  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\bean\PayBean.class
     文件        2658  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\bean\SystemBean.class
     目录           0  2013-06-26 18:46  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\util\
     文件         885  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\util\CheckCode.class
     文件        2305  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\util\Common.class
     文件         674  2012-05-04 16:42  基于JSP的户籍管理系统\hjgl\WebRoot\WEB-INF\classes\com\util\Constant.class
............此处省略110个文件信息

评论

共有 条评论

相关资源