• 大小: 1.71MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-26
  • 语言: Java
  • 标签: java  签到系统  

资源简介

java实现的简易签到系统,web版的,含数据库文件,可以直接运行

资源截图

代码片段和文件信息

package user;

import java.io.IOException;
import java.io.PrintWriter;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;

import javax.servlet.RequestDispatcher;
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.sun.mail.iap.Response;

public class check_mail extends HttpServlet {

/**
 * 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 {

this.doPost(request response);
}

/**
 * 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 {

String id=““;
String sql=““;
HttpSession session=request.getSession();
id=(String) session.getAttribute(“id“);
String Class=(String)session.getAttribute(“class“);
DB db=new DB();
ResultSet r=null;
if(Class.equals(“1“))
sql=“select * from mail_information m where m.id=‘“+id+“‘ order by m.时间 desc“;
else
sql=“select * from[user] u mail_information m where u.账号=‘“+id+“‘and m.组长=u.姓名 order by m.时间 desc“;
r=db.executeQuery(sql);
try {
ArrayList list = new ArrayList();
while(r.next())
{
mail m=new mail();
m.setId(r.getString(“id“));
m.setName(r.getString(“姓名“));
m.setGroup(r.getString(“组长“));
m.setContent(r.getString(“原因“));
m.setDate(r.getString(“时间“));
m.setDay(r.getString(“天数“));
list.add(m);
}

System.out.println(list.size());


session.setAttribute(“list“ list);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String path=“./check_mail.jsp“;
RequestDispatcher dispatcher = request.getRequestDispatcher(path);
dispatcher.forward(request response);

}

}

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

     文件        606  2012-05-17 20:45  签到系统\signsystem\.classpath

     文件        303  2012-05-17 20:45  签到系统\signsystem\.mymetadata

     文件       1753  2012-05-17 20:45  签到系统\signsystem\.project

     文件        500  2012-05-17 20:45  签到系统\signsystem\.settings\.jsdtscope

     文件        395  2012-05-17 20:45  签到系统\signsystem\.settings\org.eclipse.jdt.core.prefs

     文件        468  2012-05-17 20:45  签到系统\signsystem\.settings\org.eclipse.wst.common.component

     文件        252  2012-05-17 20:45  签到系统\signsystem\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2012-05-17 20:45  签到系统\signsystem\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2012-05-17 20:45  签到系统\signsystem\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       2721  2012-05-17 20:45  签到系统\signsystem\src\user\check_mail.java

     文件       2933  2012-05-17 20:45  签到系统\signsystem\src\user\check_random.java

     文件       3462  2012-05-17 20:45  签到系统\signsystem\src\user\check_sign.java

     文件       5225  2012-05-17 20:45  签到系统\signsystem\src\user\DB.java

     文件       2215  2012-05-17 20:45  签到系统\signsystem\src\user\findpassword.java

     文件       3502  2012-05-17 20:45  签到系统\signsystem\src\user\login_in.java

     文件        879  2012-05-17 20:45  签到系统\signsystem\src\user\mail.java

     文件       2844  2012-05-17 20:45  签到系统\signsystem\src\user\regist.java

     文件       2619  2012-05-17 20:45  签到系统\signsystem\src\user\reset_info.java

     文件       2730  2012-05-17 20:45  签到系统\signsystem\src\user\sendEmail.java

     文件       1084  2012-05-17 20:45  签到系统\signsystem\src\user\sign_detail.java

     文件       3208  2012-05-17 20:45  签到系统\signsystem\src\user\sign_in.java

     文件        967  2012-05-17 20:45  签到系统\signsystem\src\user\sign_info.java

     文件       2083  2012-05-17 20:45  签到系统\signsystem\src\user\write_mail.java

     文件       4397  2012-05-17 20:45  签到系统\signsystem\WebRoot\check_mail.jsp

     文件       4004  2012-05-17 20:45  签到系统\signsystem\WebRoot\check_sign.jsp

     文件       1614  2012-05-17 20:45  签到系统\signsystem\WebRoot\del.jsp

     文件       3143  2012-05-17 20:45  签到系统\signsystem\WebRoot\findpassword.jsp

     文件       5760  2012-05-17 20:45  签到系统\signsystem\WebRoot\image\04.gif

     文件       9633  2012-05-17 20:45  签到系统\signsystem\WebRoot\image\1.gif

     文件       9121  2012-05-17 20:45  签到系统\signsystem\WebRoot\image\10.gif

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

评论

共有 条评论