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