• 大小: 3.45MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-20
  • 语言: Java
  • 标签:   团管理  系统  Java  jsp  

资源简介

169JSP社团管理系统采用java+mysql+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(“one“)){//admin登录
String username = request.getParameter(“username“);
String password = request.getParameter(“password“);
String type=request.getParameter(“type“);
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.nextT

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-26 16:46  169JSP社团管理系统\
     文件     2097152  2013-02-19 13:48  169JSP社团管理系统\jspstgl.mdf
     文件     2097152  2013-02-19 13:48  169JSP社团管理系统\jspstgl_log.ldf
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\
     文件        1260  2018-04-05 08:47  169JSP社团管理系统\Stgl\.classpath
     目录           0  2012-06-07 12:03  169JSP社团管理系统\Stgl\.myeclipse\
     文件         285  2018-04-28 17:23  169JSP社团管理系统\Stgl\.mymetadata
     文件        1614  2018-04-05 08:48  169JSP社团管理系统\Stgl\.project
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\.settings\
     文件         564  2018-04-05 08:48  169JSP社团管理系统\Stgl\.settings\.jsdtscope
     文件         341  2018-04-05 08:47  169JSP社团管理系统\Stgl\.settings\com.genuitec.eclipse.migration.prefs
     文件         364  2018-04-05 08:47  169JSP社团管理系统\Stgl\.settings\org.eclipse.jdt.core.prefs
     文件         538  2018-04-05 08:47  169JSP社团管理系统\Stgl\.settings\org.eclipse.wst.common.component
     文件         362  2018-04-05 08:48  169JSP社团管理系统\Stgl\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2018-04-05 08:48  169JSP社团管理系统\Stgl\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-04-05 08:48  169JSP社团管理系统\Stgl\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-04-05 08:47  169JSP社团管理系统\Stgl\src\
     目录           0  2012-06-05 07:05  169JSP社团管理系统\Stgl\src\com\
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\src\com\action\
     文件       10245  2012-06-09 15:37  169JSP社团管理系统\Stgl\src\com\action\AdminServlet.java
     文件        6177  2012-06-08 05:06  169JSP社团管理系统\Stgl\src\com\action\MemberManageServlet.java
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\src\com\bean\
     文件        8054  2012-06-10 05:51  169JSP社团管理系统\Stgl\src\com\bean\AdminBean.java
     文件       12932  2012-06-10 23:26  169JSP社团管理系统\Stgl\src\com\bean\AfficheBean.java
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\src\com\util\
     文件         318  2012-06-03 04:47  169JSP社团管理系统\Stgl\src\com\util\CheckCode.java
     文件        1838  2012-06-05 00:37  169JSP社团管理系统\Stgl\src\com\util\Common.java
     文件         533  2012-06-06 17:35  169JSP社团管理系统\Stgl\src\com\util\Constant.java
     文件        2640  2012-06-02 08:28  169JSP社团管理系统\Stgl\src\com\util\DBO.java
     文件         650  2012-06-09 18:49  169JSP社团管理系统\Stgl\src\com\util\Filter.java
     目录           0  2018-04-26 16:46  169JSP社团管理系统\Stgl\src\meta-INF\
............此处省略718个文件信息

评论

共有 条评论