Add.java
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2.  * Created on 2004-9-24
  3.  *
  4.  * To change the template for this generated file go to
  5.  * Window>Preferences>Java>Code Generation>Code and Comments
  6.  */
  7. package com.affice;
  8. import oa.sys.*;
  9. import oa.sys.Time;
  10. import java.io.IOException;
  11. import java.io.PrintWriter;
  12. import java.sql.*;
  13. import javax.servlet.*;
  14. import javax.servlet.http.*;
  15. /**
  16.  ****************************************************
  17.  *类名称: Add<br>
  18.  *类功能: 增加公告信息<br>
  19.  *创建: 白伟明 2004年10月5日<br>
  20.  ****************************************************
  21.  * To change the template for this generated type comment go to
  22.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  23.  */
  24. public class Add extends HttpServlet{
  25. private HttpSession session=null;
  26. private ResultSet rs=null;
  27. private Statement stmt=null;
  28. private String title,content,sqli,sqls;
  29. private int temp=0,id;
  30. public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  31. request.setCharacterEncoding("gb2312");//设定统一编码样式,解决中文显示问题
  32. response.setContentType("text/html; charset=gb2312");
  33. Str str=new Str();//获得字符串转化类中的对象
  34. Db db=new Db();//获得数据库连接对象
  35. Time time=new Time();//获得显示时间类中的对象
  36. PrintWriter out=response.getWriter();//获得输出流对象
  37. session=request.getSession();//返回和客户端关联的Session
  38. id=Integer.parseInt((String)session.getAttribute("id"));//获得员工登陆的ID号
  39. title=request.getParameter("title");//接收表单提交过来公告标题
  40. content=request.getParameter("content");//接收表单提交过来的公告内容
  41. title=str.inStr(title);//对标题进行字符串的格式转化
  42. content=str.inStr(content);
  43. sqli="INSERT INTO affice(title,time,employeeid,content)"+
  44.      " VALUES('"+title+"','"+time.getYMD()+"',"+id+",'"+content+"')";
  45. sqls="SELECT * FROM affice WHERE time='"+time.getYMD()+"'";
  46. try {
  47. stmt=db.getStmtread();
  48. rs=stmt.executeQuery(sqls);//执行判断今日是否已经发布了公告的SQL语句
  49. if(!rs.next()){//如果今日还没有发布公告
  50. db.close();
  51. stmt=db.getStmt();
  52. temp=stmt.executeUpdate(sqli);//执行插入的SQL语句
  53. if(temp>0){
  54. request.setAttribute("msg","发布成功");//通过"名-值"对的形式将信息保存在Request范围内
  55. }else{
  56. request.setAttribute("msg","发布失败");
  57. }
  58. }else{
  59. request.setAttribute("msg","今日已经发布公告,不能再发布");
  60. }
  61. } catch (SQLException e) {
  62. e.printStackTrace();
  63. }finally{
  64. db.close();
  65. //处理完客户请求后,将请求转发到相应的JSP页来显示处理结果
  66. RequestDispatcher dispatcher=request.getRequestDispatcher("add.jsp");
  67. dispatcher.forward(request,response);
  68. }
  69. }
  70. //doGet()方法的执行效果和doPost()方法一样
  71. public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  72. doPost(request,response);
  73. }
  74. }