AddChannel.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
- /*
- * 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.Channel;
- import com.mycompany.news.service.ChannelService;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class AddChannel extends HttpServlet {
- protected void service(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- String channelName = request.getParameter("channelName");
- Integer channelOrder=Integer.valueOf(request.getParameter("channelOrder"));
- Channel channel = new Channel();
- channel.setChannelName(channelName);
- channel.setChannelOrder(channelOrder);
- channel.setChannelStatus(new Integer(0));
- ChannelService cs = new ChannelService();
- if(cs.addChannel(channel))
- 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"));
- }
- }