• 大小: 16.38MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-05
  • 语言: Java
  • 标签: java  jsp  sql  毕业设计  

资源简介

实现了校友录管理系统中的用户管理、新闻管理、相册管理、留言管理等功能。

资源截图

代码片段和文件信息

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(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.getRemot

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-15 12:40  156JSP+SQL校友录\
     目录           0  2015-03-15 12:40  156JSP+SQL校友录\校友录\
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\
     文件         709  2009-03-28 12:28  156JSP+SQL校友录\校友录\brxyl\.classpath
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\.myeclipse\
     文件         288  2009-04-12 21:56  156JSP+SQL校友录\校友录\brxyl\.mymetadata
     文件        1223  2009-03-28 12:29  156JSP+SQL校友录\校友录\brxyl\.project
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\src\
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\src\com\
     目录           0  2015-03-15 12:40  156JSP+SQL校友录\校友录\brxyl\src\com\action\
     文件       10175  2008-03-18 15:05  156JSP+SQL校友录\校友录\brxyl\src\com\action\AdminServlet.java
     文件       11023  2009-03-28 23:37  156JSP+SQL校友录\校友录\brxyl\src\com\action\MemberServlet.java
     目录           0  2015-03-15 12:40  156JSP+SQL校友录\校友录\brxyl\src\com\bean\
     文件        7995  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\bean\AdminBean.java
     文件        8884  2009-03-29 23:05  156JSP+SQL校友录\校友录\brxyl\src\com\bean\NewsBean.java
     目录           0  2015-03-15 12:40  156JSP+SQL校友录\校友录\brxyl\src\com\util\
     文件         318  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\util\CheckCode.java
     文件        1838  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\util\Common.java
     文件         533  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\util\Constant.java
     文件        2494  2014-05-20 22:10  156JSP+SQL校友录\校友录\brxyl\src\com\util\DBO.java
     文件         650  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\util\Filter.java
     文件         836  2008-03-07 19:48  156JSP+SQL校友录\校友录\brxyl\src\com\util\Log.java
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\WebRoot\
     目录           0  2015-03-15 15:17  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\guestbook\
     文件         835  2009-03-29 23:31  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\guestbook\default.jsp
     文件        9139  2009-03-29 23:31  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\guestbook\index.jsp
     文件        3416  2009-03-29 23:31  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\guestbook\replay.jsp
     目录           0  2015-03-15 09:52  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\images\
     文件       10889  2009-03-29 23:31  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\images\admin_m.swf
     文件        6221  2009-03-29 23:31  156JSP+SQL校友录\校友录\brxyl\WebRoot\admin\images\Admin_style.css
............此处省略701个文件信息

评论

共有 条评论