• 大小: 6.68MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-24
  • 语言: Java
  • 标签: 学生考勤  JAVA  JSP  

资源简介

本系统主要采用JSP为编程语言,数据库采用 SQLSERVER。可以方便考勤管理需要。主要包括考勤信息管理,用户管理。考勤信息查询等功能

资源截图

代码片段和文件信息

package com.action;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;

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;

public class ComServlet extends HttpServlet {

/**
 * Constructor of the object.
 */
public ComServlet() {
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);
HttpSession session = request.getSession();
ComBean cBean = new ComBean();
String date2=new SimpleDateFormat(“yyyy-MM-dd“).format(Calendar.getInstance().getTime());
String method = request.getParameter(“method“);
if(method.equals(“addkq“)){  //add  
 String kqsj = request.getParameter(“kqsj“);
 String kqlx = request.getParameter(“kqlx“); 
 String username=(String)session.getAttribute(“member“);
 String sql2=“select id from kq where kqsj like ‘%“+date2+“%‘ and kqlx=‘“+kqlx+“‘ and member =‘“+username+“‘“;
 //System.out.println(sql2);
 String str=cBean.getString(sql2);
 if(str==null){
 String sql=“insert into kq(kqsj kqlxmember) values(‘“+kqsj+“‘ ‘“+kqlx+“‘ ‘“+username+“‘  )“;
int flag = cBean.comUp(sql);
if(flag == Constant.SUCCESS){  
request.setAttribute(“message“ “操作成功!“);
request.getRequestDispatcher(“member/kq/index.jsp“).forward(request response); 
}
else { 
request.setAttribute(“message“ “操作失败!“);
request.getRequestDispatcher(“member/kq/index.jsp“).forward(request response); 
}
 }
 else{
 request.s

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

     文件       1423  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\.classpath

     文件        285  2012-11-07 16:27  088JSP学生考勤管理系统\学生考勤\xskq\.mymetadata

     文件       1410  2012-11-06 18:17  088JSP学生考勤管理系统\学生考勤\xskq\.project

     文件        500  2012-11-06 18:02  088JSP学生考勤管理系统\学生考勤\xskq\.settings\.jsdtscope

     文件        330  2012-11-06 18:02  088JSP学生考勤管理系统\学生考勤\xskq\.settings\org.eclipse.jdt.core.prefs

     文件         49  2012-11-06 18:02  088JSP学生考勤管理系统\学生考勤\xskq\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2012-11-06 18:02  088JSP学生考勤管理系统\学生考勤\xskq\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       6760  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\action\ComServlet.java

     文件      16808  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\bean\MemberManageBean.java

     文件       2492  2018-03-18 19:39  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\DBO.java

     文件        650  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\Filter.java

     文件        836  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\Log.java

     文件       1980  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\SmartRequest.java

     文件      27350  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\SmartUpload.java

     文件        147  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\src\com\util\SmartUploadException.java

     文件        838  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\default.jsp

     文件       2418  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\foot.jsp

     文件       1227  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\help.jsp

     文件        838  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\index.jsp

     文件       8269  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\left.jsp

     文件       2991  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\main.jsp

     文件       5847  2012-11-07 16:38  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\iframe\top.jsp

     文件      10889  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\admin_m.swf

     文件       6221  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\Admin_style.css

     文件        876  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\bg.jpg

     文件        315  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\bt_login.gif

     文件        179  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\bullet.gif

     文件      20734  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\calendar.js

     文件      26508  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\Common.js

     文件       3143  2012-11-06 18:03  088JSP学生考勤管理系统\学生考勤\xskq\WebRoot\admin\images\date.js

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

评论

共有 条评论