资源简介
管理员: 线路管理 密码管理 用户: 高级搜索 注册会员
代码片段和文件信息
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 AdminAction extends HttpServlet {
/**
* Constructor of the object.
*/
public AdminAction() {
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(sysdir+“/login.jsp“).forward(request response);
}
else if(password == null||password.trim().equals(““)){
request.setAttribute(“message“ “请输入密码!“);
request.getRequestDispatcher(sysdir+“/login.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.getRemoteA
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1565 2013-05-02 22:50 235JSP公交查询系统\bus\.classpath
文件 282 2013-05-02 22:50 235JSP公交查询系统\bus\.myme
文件 1221 2012-03-17 19:50 235JSP公交查询系统\bus\.project
文件 86 2012-03-17 19:50 235JSP公交查询系统\bus\.settings\org.eclipse.core.resources.prefs
文件 9100 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\action\AdminAction.java
文件 14536 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\bean\MemberBean.java
文件 318 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\util\CheckCode.java
文件 1905 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\util\Common.java
文件 533 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\util\Constant.java
文件 2675 2012-07-22 08:14 235JSP公交查询系统\bus\src\com\util\DBO.java
文件 650 2012-03-17 19:50 235JSP公交查询系统\bus\src\com\util\Filter.java
文件 8790 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\guestbook\index.jsp
文件 3413 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\guestbook\replay.jsp
文件 10889 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\admin_m.swf
文件 6221 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\Admin_st
文件 876 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\bg.jpg
文件 315 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\bt_login.gif
文件 179 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\bullet.gif
文件 20734 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\calendar.js
文件 26508 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\Common.js
文件 3143 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\date.js
文件 835 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\default.jsp
文件 168 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\HardWare.gif
文件 85 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\img_u.gif
文件 835 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\index.jsp
文件 57 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\li
文件 63 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\li
文件 25985 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\MainBg.gif
文件 1069 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\menu.gif
文件 1607 2012-03-17 19:50 235JSP公交查询系统\bus\WebRoot\admin\images\qq_22.gif
............此处省略261个文件信息
相关资源
- 自行车管理系统毕业设计含毕业设计
- 基于JSP的健身房管理系统的设计与实
- JSP+SQL汽车网上销售系统(毕业设计)
- ssm二手商品交易平台的设计与实现毕
- springboot床上用品销售系统毕业设计程
- android地图应用路径规划,地理编码,
- ssm流浪动物救助系统毕业设计程序
- java医院预约挂号管理系统毕业设计程
- java基于WEB网页点餐系统毕业设计程序
- 物流管理系统 java+sqlserver+tomcat毕业设
- 计算机系本科生毕业设计答辩精美P
- java美容院管理系统设计与实现毕业设
- 基于Java的图书管理系统,可用作毕业
- java开发的练习项目-OA办公后台管理系
- java|jsp|毕业设计|餐饮管理系统
- javaWeb个人理财系统源码SQL Server 2005
- 基于安卓Android的新浪微博系统精品毕
- 基于百度地图的交通查询的毕业设计
- 基于web网上订餐系统的设计与实现毕
- 企业人力资源管理系统毕业设计Stru
- JSP学生学籍管理系统源代码+论文+开题
- JSP+MYSQL药品进销存管理系统-毕业设计
- springboot家政服务平台毕业设计程序
- springboot校园招聘系统毕业设计程序
- 基于ssm+vue仿猫眼电影设计与实现毕业
- 基于android的公交查询系统
- 快递系统毕业设计Java+MySQL+毕业论文
- 毕业设计源码 文档:基于Android的音乐
- jsp超市管理系统毕业设计全套
- 基于Java的校园一卡通管理系统毕业设
评论
共有 条评论