• 大小: 9.97MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2024-02-18
  • 语言: Java
  • 标签: 购物  

资源简介

环境要自己配置的,使用的是 myeclipse8.5+mysql 5。。

资源截图

代码片段和文件信息

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      24962  2018-03-24 19:50  购物系统\jsp484网站购物系统    开题.docx

     文件      20992  2018-05-23 21:32  购物系统\jsp配置环境下载教程mysql.doc

     文件       1618  2017-04-19 17:01  购物系统\wzgw\.classpath

     文件        285  2017-04-19 17:01  购物系统\wzgw\.mymetadata

     文件       1410  2017-04-19 17:12  购物系统\wzgw\.project

     文件        500  2017-04-19 17:00  购物系统\wzgw\.settings\.jsdtscope

     文件        330  2017-04-19 17:00  购物系统\wzgw\.settings\org.eclipse.jdt.core.prefs

     文件         49  2017-04-19 17:00  购物系统\wzgw\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2017-04-19 17:00  购物系统\wzgw\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件      14192  2018-05-23 22:06  购物系统\wzgw\db.sql

     文件       9092  2017-04-19 17:01  购物系统\wzgw\src\com\action\AdminAction.java

     文件       5789  2017-04-19 17:01  购物系统\wzgw\src\com\action\CommonAction.java

     文件      16220  2017-04-19 17:26  购物系统\wzgw\src\com\action\ComServlet.java

     文件       6713  2017-04-19 17:01  购物系统\wzgw\src\com\action\GuestBookAction.java

     文件       5214  2017-04-19 17:01  购物系统\wzgw\src\com\action\HzpAction.java

     文件       6058  2017-04-19 17:01  购物系统\wzgw\src\com\action\LoginAction.java

     文件      10519  2017-04-19 17:01  购物系统\wzgw\src\com\action\MemberAction.java

     文件       6688  2017-04-19 17:01  购物系统\wzgw\src\com\action\MemberManageAction.java

     文件      13971  2017-04-19 17:01  购物系统\wzgw\src\com\action\NewsAction.java

     文件      11360  2017-04-19 17:01  购物系统\wzgw\src\com\action\NewsServlet.java

     文件       7978  2017-04-19 17:01  购物系统\wzgw\src\com\bean\AdminBean.java

     文件       4538  2017-04-19 17:01  购物系统\wzgw\src\com\bean\ComBean.java

     文件       3225  2017-04-19 17:01  购物系统\wzgw\src\com\bean\FriendlinkBean.java

     文件      10477  2017-04-19 17:01  购物系统\wzgw\src\com\bean\GuestBookBean.java

     文件      10907  2017-04-19 17:01  购物系统\wzgw\src\com\bean\HzpBean.java

     文件      14536  2017-04-19 17:01  购物系统\wzgw\src\com\bean\MemberBean.java

     文件      16834  2017-04-19 17:01  购物系统\wzgw\src\com\bean\MemberManageBean.java

     文件      13393  2017-04-19 17:01  购物系统\wzgw\src\com\bean\NewsBean.java

     文件       2039  2017-04-19 17:01  购物系统\wzgw\src\com\bean\SystemBean.java

     文件        318  2017-04-19 17:01  购物系统\wzgw\src\com\util\CheckCode.java

............此处省略631个文件信息

评论

共有 条评论