即是我们怎么用它啊?
谢谢

解决方案 »

  1.   

    see j2ee apidocString getAuthType() 
           Returns the name of the authentication scheme used to protect the servletString getContextPath() 
           Returns the portion of the request URI that indicates the context of the request 
    ……
      

  2.   

    最重要的
    1.String str = request.getPrameter(str);
    2.String[] str = request.getPramterValues(str);
    3.Object obj = request.getAttribute(str);
    4.quest.setAttribute(str,obj);
    5.HttpSession session = request.getSession();
    分别是
    1.接单个参数比如1.jsp?id=1中的id
    2.接多个参数比如<input type=checkebox name=id value=1><input type=checkebox name=id value=2>
    3.4.放参数比如在Sevlet里面request.setAttribute("id",id);JSP里面String id = (String)request.getAttribute("id");
    5.得到session。