ContentAction.java
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2. /*回复帖子 
  3. */
  4. package StudyBbs;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import org.apache.struts.action.Action;
  8. import org.apache.struts.action.ActionForm;
  9. import org.apache.struts.action.ActionForward;
  10. import org.apache.struts.action.ActionMapping;
  11. import javax.servlet.ServletContext;
  12. import javax.sql.DataSource;
  13. import java.sql.Connection;
  14. import java.sql.Statement;
  15. import java.sql.ResultSet;
  16. import java.sql.SQLException;
  17. import java.util.*;
  18. import javax.servlet.http.*;
  19. public final class ContentAction extends Action{  
  20. public ActionForward execute(
  21. ActionMapping mapping,
  22. ActionForm form,
  23. HttpServletRequest request,  
  24. HttpServletResponse response) throws Exception {
  25.     TopicForm topicform = (TopicForm) form; 
  26.             
  27. int topicid = topicform.getTopicid();
  28.         HttpSession session = request.getSession();
  29. Vector v = new Vector();
  30. ResultSet rs;
  31.     ServletContext context = servlet.getServletContext();
  32. DataSource dataSource = 
  33. (DataSource)context.getAttribute(Constants.DATASOURCE_KEY);
  34.         DB db = new DB(dataSource);
  35. Respond content =new Respond();
  36. v = content.search(db,topicid);
  37. session.setAttribute(Constants.RESPONS_LIST_KEY,v);
  38. // session.setAttribute(Constants.TALK_TYPE_KEY,"content");
  39. session.setAttribute(Constants.CUR_TOPICID_KEY,new Integer(topicid));
  40.    
  41.     return (mapping.findForward("toBbsContent"));
  42.   }
  43. }