zoukankan      html  css  js  c++  java
  • 新闻发布项目——Servlet类(doNews_readServlet )

    package bdqn.newsManageServlet.Servlet;
    
    import java.io.IOException;
    import java.io.PrintWriter;
    
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    import bdqn.newsManageServlet.Dao.commentDao;
    import bdqn.newsManageServlet.Dao.Impl.commentDaoImpl;
    import bdqn.newsManageServlet.entity.comment;
    
    public class doNews_readServlet extends HttpServlet {
    
    	/**
    	 * Destruction of the servlet. <br>
    	 */
    	public void destroy() {
    		super.destroy(); // Just puts "destroy" string in log
    		// Put your code here
    	}
    
    	/**
    	 * The doGet method of the servlet. <br>
    	 *
    	 * This method is called when a form has its tag value method equals to get.
    	 * 
    	 * @param request the request send by the client to the server
    	 * @param response the response send by the server to the client
    	 * @throws ServletException if an error occurred
    	 * @throws IOException if an error occurred
    	 */
    	public void doGet(HttpServletRequest request, HttpServletResponse response)
    			throws ServletException, IOException {
    
    		response.setContentType("text/html;charset=utf-8");
    		PrintWriter out = response.getWriter();
    		//获取评论的用户名和密码
    		request.setCharacterEncoding("utf-8");
    		String user=request.getParameter("cauthor");
    		String ip=request.getParameter("cip");
    		String connect=request.getParameter("ccontent");
    		int newsid=Integer.parseInt(request.getParameter("newsid"));
    		
    		//将评论信息添加到数据库中
    		commentDao comdao=new commentDaoImpl();
    		comment comm=new comment();
    		comm.setCmmUser(user);
    		comm.setIp(ip);
    		comm.setCmmContent(connect);
    		comm.setNewsID(newsid);
    		int rel=comdao.addComment(comm);
    		if(rel>0){
    		request.getRequestDispatcher("/newspages/news_read.jsp?newsid="+newsid).forward(request, response);
    		}else{
    			out.print("<script>alert('添加失败!');location.href='newspages/news_read.jsp?newsid='"+newsid+";</script>");
    		}
    	}
    
    	/**
    	 * The doPost method of the servlet. <br>
    	 *
    	 * This method is called when a form has its tag value method equals to post.
    	 * 
    	 * @param request the request send by the client to the server
    	 * @param response the response send by the server to the client
    	 * @throws ServletException if an error occurred
    	 * @throws IOException if an error occurred
    	 */
    	public void doPost(HttpServletRequest request, HttpServletResponse response)
    			throws ServletException, IOException {
    
    		doGet(request, response);
    	}
    
    	/**
    	 * Initialization of the servlet. <br>
    	 *
    	 * @throws ServletException if an error occurs
    	 */
    	public void init() throws ServletException {
    		// Put your code here
    	}
    
    }
    

  • 相关阅读:
    流行-Manifold学习理解与应用
    狠心奶奶自断亲情,28年后孙女拒绝相见:人有没有不原谅的权利?
    学术论文常用词汇总结(待更新)
    机动车驾驶(2)--- 老司机经验
    关于MySQL数据导出导入
    php5.6-lumen与php5.6-phalcon性能对比
    win7(64bit)+python3.5+pyinstaller3.2安装和测试
    WARNING: Can not get binary dependencies for file...
    一些不错的计算机书籍
    PHP扩展类ZipArchive实现压缩解压Zip文件和文件打包下载
  • 原文地址:https://www.cnblogs.com/a1111/p/6540308.html
Copyright © 2011-2022 走看看