StudentSvlt.java
上传用户:ht0805
上传日期:2013-10-20
资源大小:384k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. import java.io.*;
  2. import java.sql.*;
  3. import javax.servlet.*;
  4. import javax.servlet.http.*;
  5. public class StudentSvlt extends HttpServlet{
  6. public void doGet(HttpServletRequest req, HttpServletResponse res)
  7.     throws ServletException, IOException {
  8.     
  9.     String stu_id =req.getParameter("id");
  10.     int success = 0;
  11.     String action = action = req.getParameter("action");
  12.     student stu = null;
  13.     String message="";
  14.    
  15.     if ("new".equalsIgnoreCase(action)) {
  16.       stu = doNew(req,res);
  17.       
  18.       sendBean(req, res, stu, "/getStudent.jsp");
  19.     }  
  20.     
  21.     if ("update".equalsIgnoreCase(action)) {
  22.      try{
  23.       stu = doUpdate(req,res, stu_id);
  24.       sendBean(req,res,stu,"/getStudent.jsp");
  25.          }
  26.         catch(SQLException e){} 
  27.     }
  28.    
  29.     if ("delete".equalsIgnoreCase(action)) {
  30.      try{
  31.        success = doDelete(stu_id);
  32.            }
  33.            catch(SQLException e){}
  34.      if (success != 1) {
  35.      doError(req, res, "StudentSvlt: Delete unsuccessful. Rows affected: " + success);
  36.      } else {
  37.      res.sendRedirect("http://localhost:8080/test/getStudent.jsp");
  38.      }
  39.    
  40.     }
  41.     }
  42.     
  43.  public student doNew(HttpServletRequest req,HttpServletResponse res )
  44.                            throws ServletException,IOException{
  45.       student stu= new student();                     
  46.       String stu_id=req.getParameter("id");
  47.       String name=new String(req.getParameter("name").getBytes("ISO8859_1"));
  48.       String password= req.getParameter("password");
  49.       String dep=new String (req.getParameter("dep").getBytes("ISO8859_1"));
  50.       String sex = new String(req.getParameter("sex").getBytes("ISO8859_1"));
  51.       String jiguan = new String(req.getParameter("jiguan").getBytes("ISO8859_1"));
  52.       if(isTrue(req,res,stu_id,name,password) && hasLogin(req,res,stu_id)){
  53.       
  54.       stu.setId(stu_id);
  55.       stu.setName(name);
  56.       stu.setPassword(password);
  57.       stu.setDep(dep);
  58.       stu.setSex(sex);
  59.       stu.setJiguan(jiguan);
  60.       stu.addStudent(); }  
  61.       return stu;                
  62.                            
  63.                             }
  64.  public student doUpdate(HttpServletRequest req,HttpServletResponse res , String id)
  65.                            throws ServletException,IOException,SQLException {                      
  66.     student stu = new student();   
  67.     String name=new String(req.getParameter("name").getBytes("ISO8859_1"));  
  68.                  
  69.     String password = req.getParameter("password");
  70.     String dep = new String(req.getParameter("dep").getBytes("ISO8859_1"));
  71.     String sex = new String(req.getParameter("sex").getBytes("ISO8859_1"));
  72.     String jiguan = new String(req.getParameter("jiguan").getBytes("ISO8859_1"));
  73.     if(isTrue(req,res,id,name,password)){
  74.     stu.setId(id);
  75.     stu.setName(name);
  76.     stu.setPassword(password);
  77.     stu.setDep(dep);
  78.     stu.setSex(sex);
  79.     stu.setJiguan(jiguan);
  80.     stu.updateStudent();}
  81. return stu;
  82.   }
  83.   public int doDelete(String id) throws SQLException {
  84.    int num=0;
  85.     student stu=new student();
  86.     num=stu.deleteStudent(id);
  87.     return num;
  88.   }
  89. public void sendBean(HttpServletRequest req, HttpServletResponse res,
  90.                        student stu, String target)
  91.                        throws ServletException, IOException {
  92.     req.setAttribute("stu", stu);
  93.     RequestDispatcher rd = getServletContext().getRequestDispatcher(target);
  94.     rd.forward(req, res);
  95.   }
  96.   
  97.   
  98.   public void doError(HttpServletRequest req,
  99.                       HttpServletResponse res,
  100.                       String str)
  101.                       throws ServletException, IOException {
  102.     req.setAttribute("problem", str);
  103.     RequestDispatcher rd = getServletContext().getRequestDispatcher("/errorpage.jsp");
  104.     rd.forward(req, res);
  105.   }
  106.   
  107.   public boolean hasLogin(HttpServletRequest req, HttpServletResponse res,String id)
  108.   throws ServletException, IOException{
  109.    boolean f=true;
  110.    String message="对不起,该学生号已经被注册过了!";
  111.    student stu= new student();
  112.    f= stu.hasLogin(id);
  113.    if(f==false){
  114.    doError(req,res,message);
  115.    }
  116.    return f;
  117.    }
  118.   
  119.   public boolean isTrue(HttpServletRequest req, HttpServletResponse res,
  120.                         String id,String name,String password)
  121.                         throws ServletException, IOException {
  122.    boolean f=true;                     
  123.    String message ="";
  124.    if(id==null || id.equals(""))  {
  125.     f=false;
  126.     message="错误,学生号不能为空!";
  127.     doError(req,res,message); }
  128.    
  129.    if(name==null || name.equals(""))  {
  130.     f=false;
  131.     message="学生姓名不能为空,请重新填写!";
  132.     doError(req,res,message); }
  133.   
  134.        
  135.    if(password==null || password.equals(""))  {
  136.     f=false;
  137.     message="密码不能为空,请重新填写!";
  138.     doError(req,res,message); }  
  139.      return f;
  140.      
  141.   }
  142.   
  143.   public void doPost(HttpServletRequest req, HttpServletResponse res)
  144.     throws ServletException, IOException {
  145.     doGet(req, res);
  146.   }
  147. }