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

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.sys.*;
  9. import oa.sys.Time;
  10. import java.io.*;
  11. import java.sql.*;
  12. import javax.servlet.*;
  13. import javax.servlet.http.*;
  14. import javax.servlet.jsp.*;
  15. import com.jspsmart.upload.*;
  16. import com.jspsmart.upload.File;
  17. /**
  18.  ****************************************************
  19.  *类名称: Send<br>
  20.  *类功能: 公文发送(附件)<br>
  21.  *创建: 白伟明 2004年10月7日<br>
  22.  ****************************************************
  23.  * To change the template for this generated type comment go to
  24.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  25.  */
  26. public class Save extends HttpServlet{
  27. private String affix;
  28. private String sqli;
  29. private String submit;
  30. private String filepath;
  31. private String filename;
  32. private String file;
  33. private String bumf;
  34. private HttpSession session=null;
  35. private JspFactory jspxFactory = null;
  36. private PageContext pagecontext=null;
  37. private ResultSet rs=null;
  38. private Statement stmt=null;
  39. private String title,sqls,sqlu;
  40. private int temp,id,emid,filesize,sign,bumfid;
  41. public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  42. request.setCharacterEncoding("gb2312");
  43. response.setContentType("text/html; charset=gb2312");
  44. PrintWriter out=response.getWriter();
  45. session=request.getSession();
  46. Str str=new Str();
  47. Db db=new Db();
  48. Time time=new Time();
  49. SmartUpload supload=new SmartUpload();
  50. jspxFactory=JspFactory.getDefaultFactory();
  51. pagecontext=jspxFactory.getPageContext(this, request, response,"", true, 8192, true);
  52. supload.initialize(pagecontext);
  53. try {
  54. supload.upload();
  55. } catch (Exception e) {
  56. e.printStackTrace();
  57. }
  58. //获取发送人id
  59. try{
  60. id=Integer.parseInt((String)session.getAttribute("id"));
  61. }catch(Exception e){
  62. e.printStackTrace();
  63. request.setAttribute("ok","您的网页已过期请重新登录");
  64. }
  65. //获取基本信息
  66. try{
  67. emid=Integer.parseInt((String)supload.getRequest().getParameter("emid"));
  68. }catch(Exception e){
  69. e.printStackTrace();
  70. }
  71. title=supload.getRequest().getParameter("title");
  72. bumf=supload.getRequest().getParameter("bumf");
  73. try{
  74. bumfid=Integer.parseInt((String)supload.getRequest().getParameter("bumfid"));
  75. }catch(Exception e){
  76. e.printStackTrace();
  77. }
  78. submit=supload.getRequest().getParameter("Submit");
  79. title=str.inStr(title);
  80. bumf=str.inStr(bumf);
  81. if(submit.equals("现在发送")){
  82. sign=1;
  83. }else{
  84. sign=0;
  85. }
  86. //上传文件
  87. File file=supload.getFiles().getFile(0);
  88. filename=file.getFileName();
  89. filesize=file.getSize();
  90. filepath=file.getFilePathName();
  91. if (!file.isMissing()){
  92. try {
  93. file.saveAs("/upload/"+id+filename);
  94. } catch (Exception e1) {
  95. e1.printStackTrace();
  96. }
  97. }else{
  98. filename=null;
  99. filesize=0;
  100. filepath="";
  101. }
  102. if(filename!=null){
  103. affix=id+filename;
  104. }else{
  105. affix="";
  106. }
  107. if(sign==0){
  108. //保存
  109. sqlu="UPDATE bumf SET sendter="+id+",accepter="+id+",title='"+title+"',time='"+time.getYMDHMS()
  110. +"',content='"+bumf+"',affix='"+affix+"',examine="+1+",sign="+sign+" WHERE bumfid="+bumfid;
  111. try{
  112. stmt=db.getStmt();
  113. temp=stmt.executeUpdate(sqlu);
  114. if(temp>0){
  115. request.setAttribute("ok","操作成功");
  116. }else{
  117. request.setAttribute("ok","操作失败");
  118. }
  119. db.close();
  120. }catch(Exception e){
  121. e.printStackTrace();
  122. }
  123. }else{
  124. //发送
  125. sqls="SELECT * FROM eminfo WHERE employeeid="+emid;
  126. sqlu="UPDATE  bumf SET sendter="+id+",accepter="+emid+",title='"+title+"',time='"+time.getYMDHMS()
  127. +"',content='"+bumf+"',affix='"+affix+"',examine="+0+",sign="+sign+" WHERE bumfid="+bumfid;
  128. try {
  129. stmt=db.getStmtread();
  130. rs=stmt.executeQuery(sqls);
  131. if(rs.next()){
  132. db.close();
  133. stmt=db.getStmt();
  134. temp=stmt.executeUpdate(sqlu);
  135. if(temp>0){
  136. request.setAttribute("ok","操作成功");
  137. }else{
  138. request.setAttribute("ok","操作失败");
  139. }
  140. db.close();
  141. }else{
  142. request.setAttribute("ok","接收人ID并不存在");
  143. db.close();
  144. }
  145. } catch (SQLException e) {
  146. e.printStackTrace();
  147. }
  148. }
  149. RequestDispatcher dispatcher=request.getRequestDispatcher("send");
  150. dispatcher.forward(request,response);
  151. }
  152. public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  153. doPost(request,response);
  154. }
  155. }