See.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.bumf;
  8. import oa.data.Bumf;
  9. import oa.sys.*;
  10. import oa.sys.Time;
  11. import java.io.*;
  12. import java.sql.*;
  13. import java.util.*;
  14. import javax.servlet.*;
  15. import javax.servlet.http.*;
  16. /**
  17.  ****************************************************
  18.  *类名称: See<br>
  19.  *类功能: 公文接收(附件)<br>
  20.  *创建: 白伟明 2004年10月11日<br>
  21.  ****************************************************
  22.  * To change the template for this generated type comment go to
  23.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  24.  */
  25. public class See extends HttpServlet{
  26. private int bumfid;
  27. private int sign;
  28. private int examine;
  29. private int accepter;
  30. private int sendter;
  31. private String axffix;
  32. private String content;
  33. private String title;
  34. private String time;
  35. private String sqls;
  36. private String submit;
  37. private ResultSet rs=null;
  38. private Statement stmt=null;
  39. public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  40. request.setCharacterEncoding("gb2312");
  41. response.setContentType("text/html; charset=gb2312");
  42. Str str=new Str();
  43. Db db=new Db();
  44. Time times=new Time();
  45. Collection coll=new ArrayList();
  46. //查看公文
  47. sqls="SELECT * FROM bumf WHERE  sign="+1+" AND examine="+1+" ORDER BY bumfid";
  48. try{
  49. stmt=db.getStmtread();
  50. rs=stmt.executeQuery(sqls);
  51. while(rs.next()){
  52. bumfid=rs.getInt(1);
  53. sendter=rs.getInt(2);
  54. accepter=rs.getInt(3);
  55. title=rs.getString(4);
  56. time=rs.getString(5);
  57. content=rs.getString(6);
  58. axffix=rs.getString(7);
  59. examine=rs.getInt(8);
  60. sign=rs.getInt(9);
  61. content=str.outStr(content);
  62. axffix=str.outStr(axffix);
  63. Bumf bumf=new Bumf();
  64. bumf.setId(bumfid);
  65. bumf.setSendter(sendter);
  66. bumf.setAccepter(accepter);
  67. bumf.setTitle(title);
  68. bumf.setTime(time);
  69. bumf.setContent(content);
  70. bumf.setExamine(examine);
  71. bumf.setSign(sign);
  72. bumf.setAffix(axffix);
  73. coll.add(bumf);
  74. }
  75. request.setAttribute("msg",coll);
  76. }catch(Exception e){
  77. e.printStackTrace();
  78. }finally{
  79. db.close();
  80. RequestDispatcher dispatcher=request.getRequestDispatcher("see.jsp");
  81. dispatcher.forward(request,response);
  82. }
  83. }
  84. public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  85. doPost(request,response);
  86. }
  87. }