ResultListAction.java
上传用户:nbxinmin
上传日期:2021-10-09
资源大小:46k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.web.action;
  2. import java.util.List;
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.action.ActionForward;
  7. import org.apache.struts.action.ActionMapping;
  8. import com.xdf.exams.bean.Result;
  9. import com.xdf.exams.bean.Student;
  10. import com.xdf.exams.bo.BOFactory;
  11. import com.xdf.exams.bo.IResultService;
  12. /** 
  13.  * MyEclipse Struts
  14.  * Creation date: 04-09-2007
  15.  * 
  16.  * XDoclet definition:
  17.  * @struts.action validate="true"
  18.  */
  19. public class ResultListAction extends BaseDispatchAction {
  20. /** 
  21.  * Method execute
  22.  * @param mapping
  23.  * @param form
  24.  * @param request
  25.  * @param response
  26.  * @return ActionForward
  27.  */
  28. public ActionForward list(ActionMapping mapping, ActionForm form,
  29. HttpServletRequest request, HttpServletResponse response) {
  30. Student s = (Student)request.getSession().getAttribute("student");
  31. IResultService ser = BOFactory.getResultService();
  32. List list = ser.findResultByUserid(s.getStudentid());
  33. request.setAttribute("resultlist",list);
  34. return mapping.findForward("result");
  35. }
  36. public ActionForward detail(ActionMapping mapping, ActionForm form,
  37. HttpServletRequest request, HttpServletResponse response) {
  38. String sresultid = request.getParameter("resultid");
  39. IResultService ser = BOFactory.getResultService();
  40. Long resultid = null;
  41. try {
  42. resultid = new Long(sresultid);
  43. } catch (Exception e) {
  44. e.printStackTrace();
  45. }
  46. Result r = ser.findResult(resultid);
  47. request.setAttribute("result",r);
  48. return mapping.findForward("resultdetail");
  49. }
  50. }