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

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.info;
  8. import oa.sys.*;
  9. import java.io.*;
  10. import java.sql.*;
  11. import javax.servlet.*;
  12. import javax.servlet.http.*;
  13. /**
  14.  ****************************************************
  15.  *类名称: Del<br>
  16.  *类功能: 删除短消息<br>
  17.  *创建: 白伟明 2004年10月11日<br>
  18.  ****************************************************
  19.  * To change the template for this generated type comment go to
  20.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  21.  */
  22. public class Del extends HttpServlet{
  23. private int temp;
  24. private String sqli;
  25. private int id;
  26. private int infoid;
  27. private HttpSession session=null;
  28. private ResultSet rs=null;
  29. private Statement stmt=null;
  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. PrintWriter out=response.getWriter();
  36. session=request.getSession();
  37. try{
  38. id=Integer.parseInt((String)session.getAttribute("id"));
  39. }catch(Exception e){
  40. e.printStackTrace();
  41. }
  42. try{
  43. infoid=Integer.parseInt((String)request.getParameter("infoid"));
  44. }catch(Exception e){
  45. e.printStackTrace();
  46. }
  47. if(id==-1){
  48. sqli="DELETE FROM info WHERE infoid="+infoid;
  49. }else{
  50. sqli="DELETE FROM info WHERE accepter="+id+" AND infoid="+infoid;
  51. }
  52. try {
  53. stmt=db.getStmt();
  54. temp=stmt.executeUpdate(sqli);
  55. } catch (SQLException e) {
  56. e.printStackTrace();
  57. }finally{
  58. db.close();
  59. RequestDispatcher dispatcher=request.getRequestDispatcher("view");
  60. dispatcher.forward(request,response);
  61. }
  62. }
  63. public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
  64. doPost(request,response);
  65. }
  66. }