AuditComment.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-12-9
  3.  *
  4.  * TODO To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Style - Code Templates
  6.  */
  7. package com.mycompany.servlet;
  8. import java.io.IOException;
  9. import java.net.URLEncoder;
  10. import javax.servlet.ServletException;
  11. import javax.servlet.http.HttpServlet;
  12. import javax.servlet.http.HttpServletRequest;
  13. import javax.servlet.http.HttpServletResponse;
  14. import com.mycompany.news.dto.NewsComment;
  15. import com.mycompany.news.service.NewsCommentService;
  16. /**
  17.  * @author Administrator
  18.  *
  19.  * TODO To change the template for this generated type comment go to
  20.  * Window - Preferences - Java - Code Style - Code Templates
  21.  */
  22. public class AuditComment extends HttpServlet {
  23. protected void service(HttpServletRequest request, HttpServletResponse response)
  24. throws ServletException, IOException {
  25. String auditPerson = request.getParameter("auditPerson");
  26. long commentId = Long.parseLong(request.getParameter("commentId"));
  27. int auditStatus = Integer.parseInt(request.getParameter("auditStatus"));
  28. NewsCommentService cs = new NewsCommentService();
  29. NewsComment comment= new NewsComment();
  30. comment.setAuditPerson(auditPerson);
  31. comment.setAuditStatus(auditStatus);
  32. comment.setCommentId(new Long(commentId));
  33. if(cs.auditComment(comment))
  34. response.sendRedirect(request.getContextPath()+"/opsucc.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
  35. else
  36. response.sendRedirect(request.getContextPath()+"/opfail.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
  37. }
  38. }