资源简介

这是运动与健康管理系统毕业设计的源代码和数据库,可运行,先上传到网上,希望对你有所帮助

资源截图

代码片段和文件信息

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.getRemoteAddr

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

    .CA....      4156  2019-04-08 16:41  mental\.classpath

    .CA....       836  2019-04-08 16:41  mental\.myeclipse\profiler\mental on MyEclipse Tomcat.xml

    .CA....       291  2019-04-08 16:41  mental\.mymetadata

    .CA....      1749  2019-04-08 16:41  mental\.project

    .CA....       500  2019-04-08 16:41  mental\.settings\.jsdtscope

    .CA....        70  2019-04-08 16:41  mental\.settings\org.eclipse.core.resources.prefs

    .CA....       303  2019-04-08 16:41  mental\.settings\org.eclipse.jdt.core.prefs

    .CA....       456  2019-04-08 16:41  mental\.settings\org.eclipse.wst.common.component

    .CA....       252  2019-04-08 16:41  mental\.settings\org.eclipse.wst.common.project.facet.core.xml

    .CA....        49  2019-04-08 16:41  mental\.settings\org.eclipse.wst.jsdt.ui.superType.container

    .CA....         6  2019-04-08 16:41  mental\.settings\org.eclipse.wst.jsdt.ui.superType.name

    .CA....      9094  2019-04-08 16:41  mental\src\com\action\AdminAction.java

    .CA....      5642  2019-04-08 16:41  mental\src\com\action\AfficheAction.java

    .CA....      5707  2019-04-08 16:41  mental\src\com\action\CommonAction.java

    .CA....     12139  2019-04-08 16:41  mental\src\com\action\ComServlet.java

    .CA....      6994  2019-04-08 16:41  mental\src\com\action\GuestBookAction.java

    .CA....      5214  2019-04-08 16:41  mental\src\com\action\HzpAction.java

    .CA....      6050  2019-04-08 16:41  mental\src\com\action\LoginAction.java

    .CA....     10446  2019-04-08 16:41  mental\src\com\action\MemberAction.java

    .CA....      6490  2019-04-08 16:41  mental\src\com\action\MemberManageAction.java

    .CA....     13790  2019-04-08 16:41  mental\src\com\action\NewsAction.java

    .CA....     11192  2019-04-08 16:41  mental\src\com\action\NewsServlet.java

    .CA....      6241  2019-04-08 16:41  mental\src\com\action\UpServlet.java

    .CA....      7959  2019-04-08 16:41  mental\src\com\bean\AdminBean.java

    .CA....     12803  2019-04-08 16:41  mental\src\com\bean\AfficheBean.java

    .CA....      4274  2019-04-08 16:41  mental\src\com\bean\ComBean.java

    .CA....      3217  2019-04-08 16:41  mental\src\com\bean\FriendlinkBean.java

    .CA....     10474  2019-04-08 16:41  mental\src\com\bean\GuestBookBean.java

    .CA....     10832  2019-04-08 16:41  mental\src\com\bean\HzpBean.java

    .CA....     14391  2019-04-08 16:41  mental\src\com\bean\MemberBean.java

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

评论

共有 条评论