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

Java编程

开发平台:

Java

  1. package StudyNote;
  2. import javax.servlet.http.HttpServletRequest;
  3. import javax.servlet.http.HttpServletResponse;
  4. import org.apache.struts.action.Action;
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.action.ActionForward;
  7. import org.apache.struts.action.ActionMapping;
  8. import javax.servlet.ServletContext;
  9. import javax.sql.DataSource;
  10. import java.sql.Connection;
  11. import java.sql.Statement;
  12. import java.sql.ResultSet;
  13. import java.sql.SQLException;
  14. import java.util.*;
  15. import javax.servlet.http.*;
  16. import org.apache.struts.action.DynaActionForm;
  17. import org.apache.struts.action.ActionMessage;
  18. import org.apache.struts.action.ActionMessages;
  19. public final class DetailAction extends Action{  
  20. public ActionForward execute(
  21. ActionMapping mapping,
  22. ActionForm form,
  23. HttpServletRequest request,  
  24. HttpServletResponse response) throws Exception {
  25.     DynaActionForm noteIdForm = (DynaActionForm) form;         
  26. Integer noteId = (Integer)noteIdForm.get("noteId");
  27.         HttpSession session = request.getSession();
  28. Vector noteList = new Vector();
  29. Note note = new Note();
  30.     ServletContext context = servlet.getServletContext();
  31. DataSource dataSource = 
  32. (DataSource)context.getAttribute(Constants.DATASOURCE_KEY);
  33.         DB db = new DB(dataSource);
  34.     String username=(String)session.getAttribute(Constants.LOGIN_USERNAME_KEY);
  35. String PageForward;
  36. ActionMessages errors = new ActionMessages();
  37.         
  38. if (username==null){
  39.             errors.add(ActionMessages.GLOBAL_MESSAGE,
  40.                            new ActionMessage("errors.accessDeny"));
  41. if (!errors.isEmpty()) {
  42. saveErrors(request, errors);
  43.   PageForward="toWrong";  
  44. }
  45.         else {
  46.          note = Note.GetDetail(db,noteId.intValue());
  47. session.setAttribute(Constants.NOTE_DETAIL_KEY,note);
  48.   PageForward="toNoteDetail";  
  49. }
  50. db.close();
  51.     return (mapping.findForward(PageForward));
  52.   }
  53. }