jsp 的 request对象是如何定义的?
request对象是怎么定义的?
是哪个类的实例呢?我手头只有英文版的手册,看起来很复杂
顺带求一本中文API手册,我学习一下。链接自己搜不到的。谢谢了
------解决方案--------------------HttpServletRequest
------解决方案--------------------jsp里面的request不用实例化吧
------解决方案--------------------JSP 内置对象,直接用就可以。
------解决方案--------------------在tomcat里面有*_jsp.java的文件Tomcat 6.0\work\Catalina\localhost\ChniWEB\org\apache\jsp 你可以结合API看看
------解决方案--------------------jsp直接可以使用request.get()
------解决方案--------------------<%
request.getAttribute("");
%>
------解决方案--------------------
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
String str= request.getParameter("str");
}