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

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.Channel;
  15. import com.mycompany.news.service.ChannelService;
  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 AddChannel extends HttpServlet {
  23. protected void service(HttpServletRequest request, HttpServletResponse response)
  24. throws ServletException, IOException {
  25. String channelName = request.getParameter("channelName");
  26. Integer channelOrder=Integer.valueOf(request.getParameter("channelOrder"));
  27. Channel channel = new Channel();
  28. channel.setChannelName(channelName);
  29. channel.setChannelOrder(channelOrder);
  30. channel.setChannelStatus(new Integer(0));
  31. ChannelService cs = new ChannelService();
  32. if(cs.addChannel(channel))
  33. response.sendRedirect(request.getContextPath()+"/opsucc.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
  34. else
  35. response.sendRedirect(request.getContextPath()+"opfail.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
  36. }
  37. }