资源简介
JSP学生评奖评优管理子系统 对你的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(“管理员“)){//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();
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2097152 2012-06-10 03:48 092JSP学生评奖评优管理子系统\jsppjpy.mdf
文件 2097152 2012-06-07 16:33 092JSP学生评奖评优管理子系统\jsppjpy_log.ldf
文件 391907 2012-06-08 19:03 092JSP学生评奖评优管理子系统\JSP学生评奖评优管理子系统录像.rar
文件 552 2012-06-06 10:17 092JSP学生评奖评优管理子系统\Pjpy\.classpath
文件 285 2012-06-08 14:09 092JSP学生评奖评优管理子系统\Pjpy\.myme
文件 1222 2012-06-01 09:18 092JSP学生评奖评优管理子系统\Pjpy\.project
文件 10218 2012-06-01 09:48 092JSP学生评奖评优管理子系统\Pjpy\src\com\action\AdminServlet.java
文件 8775 2012-06-09 11:56 092JSP学生评奖评优管理子系统\Pjpy\src\com\bean\AdminBean.java
文件 318 2012-06-05 04:35 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\CheckCode.java
文件 1838 2012-06-03 03:36 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\Common.java
文件 533 2012-06-10 01:39 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\Constant.java
文件 2640 2012-06-02 01:24 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\DBO.java
文件 650 2012-06-09 15:31 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\Filter.java
文件 792 2012-06-08 23:30 092JSP学生评奖评优管理子系统\Pjpy\src\com\util\MD5.java
文件 4239 2012-06-02 13:26 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\cj\addcp.jsp
文件 4239 2012-06-10 23:37 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\cj\addkc.jsp
文件 2601 2012-06-04 14:31 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\cj\cp.jsp
文件 2597 2012-06-06 21:54 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\cj\kc.jsp
文件 2421 2012-06-07 07:51 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\if
文件 1227 2012-06-04 20:32 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\if
文件 14226 2012-06-10 14:29 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\if
文件 2880 2012-06-06 00:43 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\if
文件 5901 2012-06-07 09:05 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\if
文件 10889 2012-06-06 07:04 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\admin_m.swf
文件 6221 2012-06-04 15:59 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\Admin_st
文件 829 2012-06-02 04:46 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\bg.jpg
文件 315 2012-06-04 01:39 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\bt_login.gif
文件 179 2012-06-05 17:03 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\bullet.gif
文件 20734 2012-06-11 04:57 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\calendar.js
文件 26508 2012-06-10 22:12 092JSP学生评奖评优管理子系统\Pjpy\WebRoot\admin\images\Common.js
............此处省略189个文件信息
- 上一篇:Java面试及简历相关
- 下一篇:学生信息管理系统oracle jsp
相关资源
- 学生信息管理系统oracle jsp
- 基于JavaEE的商城系统
- Unigui jsPlumb Demo流程图.rar
- JSP+JavaBean+MySQL实现登陆及增删改查(
- jsp+servlet+mysql做的bbs系统
- web网页版的聊天室 JsP+ ajax 实现公聊和
- 淘宝jsp项目源代码和页面
- 抽奖抽签软件
- JSP网上购物 论文+开题报告+任务书+文
- mvc jsp BBS论坛源代码
- ExtJS+JSP+Servlet酒店管理系统完整版
- 用jsp的淘宝网站
- 《jsp网络编程从入门到精通》配套光
- 基于JSP的文档管理系统
- 物流管理系统 JSP源代码
- 在线问卷调查系统
- JSP2BSQL图书借阅管理系统源代码2B可执
- 校园交易平台 jsp
- JAVAJSP在线收藏夹源码
- JSP+SQL毕业论文选题管理系统
- jsp在线考试系统217958
- JSP +MYSQL工资管理系统(毕业设计)
- JSP+SQL电费管理系统
- JSP学生评奖评优管理系统 毕业设计
- 仓库管理系统JSP+ACCESS
- JSP+MYSQL网上订餐管理系统
- NIIT jsp 试题 有答案
- 音乐网站JSP+SERVLET
- jsp+Servlet+JavaBean 购物系统
- jsp在线答疑系统 jsp网上答疑系统
评论
共有 条评论