AuditComment.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:2k
- /*
- * Created on 2005-12-9
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- package com.mycompany.servlet;
- import java.io.IOException;
- import java.net.URLEncoder;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import com.mycompany.news.dto.NewsComment;
- import com.mycompany.news.service.NewsCommentService;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class AuditComment extends HttpServlet {
- protected void service(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
-
- String auditPerson = request.getParameter("auditPerson");
- long commentId = Long.parseLong(request.getParameter("commentId"));
- int auditStatus = Integer.parseInt(request.getParameter("auditStatus"));
-
- NewsCommentService cs = new NewsCommentService();
-
-
- NewsComment comment= new NewsComment();
- comment.setAuditPerson(auditPerson);
- comment.setAuditStatus(auditStatus);
- comment.setCommentId(new Long(commentId));
- if(cs.auditComment(comment))
- response.sendRedirect(request.getContextPath()+"/opsucc.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
- else
- response.sendRedirect(request.getContextPath()+"/opfail.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
- }
- }