当前位置 : 主页 > 编程语言 > java >

pageContext对象

来源:互联网 收集:自由互联 发布时间:2021-06-25
pageContext对象是很强大的,可以用pageContext对象可以取得request,response等的对象,他是javax.servlet.jsp.pageContext类的实例,主要表示jsp的上下文 常用方法 1. public abstract void forward(String rela

pageContext对象是很强大的,可以用pageContext对象可以取得request,response等的对象,他是javax.servlet.jsp.pageContext类的实例,主要表示jsp的上下文

常用方法

1. public abstract void forward(String relativeUrlPath) throws ServletException,IOException

2. public void include(String relativeUrlPath) throws ServletException,IOException

3. public ServletConfig getServletConfig()

4. public ServletContext getServletContext()

5. public ServletRequest getRequest()

6. public ServletResponse getResponse()

7. public HttpSession getSession()

pageContext主要功能是在JSP文件的支持,功能强大,可以操作各种内置对象


我们来实现一个地址跳转的功能,首先是第一个页面:

<%@ page contentType="text/html" pageEncoding="utf-8" language="java" %>
<%@ page import="java.util.*"%>
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<%
		pageContext.forward("pageContext_demo_02.jsp?name=liuke");
	%>
</body>
</html>

第二个页面来取得数据,注意此时用pageContext来取request对象


<%@ page contentType="text/html" pageEncoding="utf-8" language="java" %>
<%@ page import="java.util.*"%>
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<%
		String name = pageContext.getRequest().getParameter("name");
		String path = pageContext.getServletContext().getRealPath("/");
	%>
	姓名:<%= name%><br>
	虚拟目录完整路径:<%= path%>
</body>
</html>
总结:注意一点,在返回request、response对象的时候返回的是ServletRequest和ServletResponse所以有些需要HttpServletRequest和HttpServletResponse来操作的东西现在是不能用的,这点很重要
上一篇:jsp推送iOS消息
下一篇:out对象
网友评论