资源简介
本系统采用JAVAEE制作的仓库管理系统,基本功能都已实现,仅供参考和学习
代码片段和文件信息
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.EmpBean;
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();
EmpBean sbean = new EmpBean();
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.nextTok
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-23 09:47 javaEE仓库管理系统\
文件 81 2014-08-29 14:21 javaEE仓库管理系统\readme.txt
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\
文件 411 2014-04-23 21:26 javaEE仓库管理系统\代码\.classpath
目录 0 2017-05-23 11:14 javaEE仓库管理系统\代码\.myeclipse\
文件 285 2014-04-23 21:26 javaEE仓库管理系统\代码\.myme
文件 1410 2014-04-23 22:01 javaEE仓库管理系统\代码\.project
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\.settings\
文件 658 2014-04-23 22:01 javaEE仓库管理系统\代码\.settings\.jsdtscope
文件 49 2014-04-23 22:01 javaEE仓库管理系统\代码\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2014-04-23 22:01 javaEE仓库管理系统\代码\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\me
文件 39 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\me
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\action\
文件 7089 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\action\AdminServlet.class
文件 8872 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\action\ba
文件 4399 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\action\StudentsServlet.class
文件 5107 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\action\YdServlet.class
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\
文件 7985 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\AdminBean.class
文件 2729 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\ba
文件 10145 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\CourseBean.class
文件 11198 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\EmpBean.class
文件 2510 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\bean\SystemBean.class
目录 0 2017-05-22 16:32 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\util\
文件 922 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\util\CheckCode.class
文件 2370 2014-04-23 21:26 javaEE仓库管理系统\代码\WebRoot\WEB-INF\classes\com\util\Common.class
............此处省略202个文件信息
- 上一篇:仿京东全套jsp模板
- 下一篇:东北大学2018年JAVA试题
相关资源
- Java仓库管理系统项目源码
- java web 仓库管理系统
- android仓库管理系统源码127902
- Android(仓库管理系统)
- java仓库管理系统SQL
- J2EE课程设计--仓库管理系统.rar
- JAVA JSP仓库管理系统.源代码 论文
- java 做的仓库管理系统
- 基于JSP的仓库管理系统
- Android仓库管理系统源码
- Android仓库管理
- java仓库管理系统
- 安卓仓库管理系统源码(毕业设计
- android应用源码仓库管理系统
- Android应用源码仓库管理系统毕业设计
- 基于android实现的仓库管理系统案例,
- JAVA仓库管理系统源码(毕业设计 课程
- Javamysql仓库管理系统
- 简单仓库管理系统 基于java+SQLserver2
- Java三大框架之仓库管理系统
- 仓库管理系统java课程设计
- java+jsp+servlet+mvc写的简易的仓库管理系
- java_仓库管理系统
- 仓库管理系统带代码
- java+ mysql仓库管理系统
- Java课程设计-仓库管理系统
- 2019 MVC5仓库管理系统.zip
- 超市进销存库存仓库管理系统 mysql
- 仓库管理系统RFID出入库货架java.zip
- JavaWeb基于SSM框架的仓库管理系统
评论
共有 条评论