资源简介

java毕业设计动漫论坛系统

资源截图

代码片段和文件信息

package com.action;
/**
 * 管理员登陆 增加 修改 删除  
 */
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
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.ComBean; 
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);
String date=new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss“).format(Calendar.getInstance().getTime());
String date2=new SimpleDateFormat(“yyyy-MM-dd“).format(Calendar.getInstance().getTime());
try{
String method=request.getParameter(“method“).trim();
ComBean cBean = new ComBean();
HttpSession session = request.getSession();   
if(method.equals(“one“)){//用户登录
String username = request.getParameter(“username“);
String password = request.getParameter(“password“);   
String str=cBean.getString(“select realname from admin where username=‘“+username+“‘ and  password=‘“+password+“‘ “);
if(str==null){
request.setAttribute(“message“ “登录信息错误!“);
request.getRequestDispatcher(“login2.jsp“).forward(request response); 
}
else{
session.setAttribute(“user“ username);   
request.getRequestDispatcher(“admin/index.jsp“).forward(request response); 
}  
}
else if(method.equals(“uppwd“)){//修改密码
String username=(String)session.getAttribute(“user“); 
Str

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

     文件        907  2017-03-29 20:57  dongman\.classpath

     文件        294  2017-03-29 20:56  dongman\.mymetadata

     文件       1413  2017-03-29 20:59  dongman\.project

     文件        500  2017-03-29 20:56  dongman\.settings\.jsdtscope

     文件        330  2017-03-29 20:56  dongman\.settings\org.eclipse.jdt.core.prefs

     文件         49  2017-03-29 20:56  dongman\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2017-03-29 20:56  dongman\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       7297  2017-03-29 20:56  dongman\src\com\action\AdminServlet.java

     文件       9567  2017-03-29 21:23  dongman\src\com\action\ComServlet.java

     文件      10487  2017-03-29 20:56  dongman\src\com\action\MemberServlet.java

     文件       9173  2018-12-21 09:26  dongman\src\com\action\UpServlet.java

     文件       4310  2017-03-29 20:56  dongman\src\com\bean\ComBean.java

     文件        318  2017-03-29 20:56  dongman\src\com\util\CheckCode.java

     文件       1838  2017-03-29 20:56  dongman\src\com\util\Common.java

     文件        533  2017-03-29 20:56  dongman\src\com\util\Constant.java

     文件       2442  2017-03-29 20:56  dongman\src\com\util\DBO.java

     文件        650  2017-03-29 20:56  dongman\src\com\util\Filter.java

     文件        792  2017-03-29 20:56  dongman\src\com\util\MD5.java

     文件       2939  2017-03-29 20:57  dongman\WebRoot\admin\iframe\left.jsp

     文件       1709  2017-03-29 20:57  dongman\WebRoot\admin\iframe\main.jsp

     文件       1311  2017-03-29 20:57  dongman\WebRoot\admin\iframe\top.jsp

     文件        989  2017-03-29 20:57  dongman\WebRoot\admin\index.jsp

     文件       2872  2017-03-29 20:57  dongman\WebRoot\admin\lb\add.jsp

     文件       6415  2017-03-29 20:57  dongman\WebRoot\admin\lb\index.jsp

     文件       2288  2017-03-29 20:57  dongman\WebRoot\admin\lb\s.jsp

     文件       6597  2017-03-29 20:57  dongman\WebRoot\admin\lb\sinfo.jsp

     文件       7046  2017-03-29 20:57  dongman\WebRoot\admin\member\index.jsp

     文件       2311  2017-03-29 20:57  dongman\WebRoot\admin\member\s.jsp

     文件       7190  2017-03-29 20:57  dongman\WebRoot\admin\member\sinfo.jsp

     文件       6618  2017-03-29 20:57  dongman\WebRoot\admin\pl\index.jsp

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

评论

共有 条评论