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
    	}
    
    }
    

  • 相关阅读:
    学习日记-- 动态性。动态编译,静态方法,包装类
    第一周学习所获———ORM,数据持久化,通过注解来实现数据持久化框架
    第一周学习所获--class类1(反射和类加载过程)
    各种命名规范
    用easyui,json,纯mvc实现一个系统的数据流动过程
    js+bootstrap实现分页页码
    Echarts简单案例
    bootstrap日期控件(双日期、清空等问题解决)
    三种方法实现调用Restful接口
    Spring MVC异常处理 和 重定向传递数据
  • 原文地址:https://www.cnblogs.com/a1111/p/12816516.html
Copyright © 2011-2022 走看看