02---jsp内置对象08(pageContext对象)

pageContext对象:
 pageContext对象是javax.servlet.jsp.PageContext类的实例,主要表示是一个
 jsp页面的上下文,在此类中除了之前讲解过的属性操作之外,还定义了以下一些方法:
 ·public abstract void forward(String relativeUrlPath) throws
  servletException,IOException
 ·public void include(String relativeUrlPath) throws ServletException,IOException
 ·public ServletConfig getServletConfig()
 ·public ServletConfig getServletContext()
 ·public ServletRequest getRequest()
 ·public ServletResponse getResponse()
 ·public HttpSession getSession()
 
 pageContext 主要的功能是在jsp文件中支持,而且一定记住的是,pageContext功能强大,
 几乎可以操作各种内置对象;
 pageContext是一个功能强大的内置对象,以后学习jsp高端编程的时候,标签库编程
 基本上就是要使用pageContext对象完成了;

 下面使用pageContext完成一次跳转功能:
  <%@ page contentType="text/html" pageEncoding="gbk"%>
  <html>
  <head><title>这是测试</title></head>
  <body>
   <%
    pageContext.forward("pageContext_forward_demo02.jsp?

info=MLDN");
   %> 
   <h3></h3>
  </body>
  </html>
 既然现在是跳转,则肯定是可以传递参数的,那么采用地址重新的方式完成参数传递;
pageContext_forward_demo01.jsp:
 <%@ page contentType="text/html" pageEncoding="gbk"%>
 <html>
 <head><title>这是测试</title></head>
 <body>
  <%
   //服务器跳转
   pageContext.forward("pageContext_forward_demo02.jsp?info=MLDN");
  %> 
  <h3></h3>
 </body>
 </html>

pageContext_forward_demo02.jsp:
 <%@ page contentType="text/html" pageEncoding="gbk"%>
 <html>
 <head><title>这是测试</title></head>
 <body>
  <%
   //直接从pageContext对象中取得request
   String info=pageContext.getRequest().getParameter("info");
  %> 
  <h3>info=<%=info%></h3>
  <h3>realpath=<%=pageContext.getServletContext().getRealPath("/")%></h3>
 </body>
 </html>

但是要注意通过pageContext.getRequest()等得到的request或者得到的response的了类型是

ServletRequest
 或者ServletResponse类型的,而内置的request/response是

javax.servlet.http.HttpServletRequest
 /javax.servlet.http.HttpServletResponse的实例,而这两个接口继承了

javax.servlet.ServletRequest
 /javax.servlet.ServletResponse;所有通过pageContext对象得到的request或response只能算

是内置对象
 request/response的一部分,并不是真正的内置对象request/response;

 

你可能感兴趣的:(02---jsp内置对象08(pageContext对象))