Ø PAGE_SCOPE:pageContext范围;
Ø REQUEST_SCOPE:request范围;
Ø SESSION_SCOPE:session范围;
Ø APPLICATION_SCOPE:application范围;
Ø void setAttribute(String name, Object value, int scope):设置数据到指定的范围中,例如:pageContext.setAttribute(“hello”, “hello world”, PageContext.REQUEST),这个方法调用等同与:request.setAttribute(“hello”, “hello world”);
Ø Object getAttribute(String name, int scope):获取指定范围的数据;
Ø void removeAttribute(String name, int scope):移除指定范围的数据;
Ø Object findAttribute(String name):在所有范围内查找数据,依次为page、request、session、application。如果在前一个范围内查找到数据,那么就返回,而不会在到下一个范围中去查找!
l 获取其他隐藏对象:可以使用pageContext获取其他隐藏对象。
Ø JspWriter getOut():获取out隐藏对象;
Ø ServletConfig getServletConfig():获取config隐藏对象;
Ø Object getPage():获取page隐藏对象;
Ø HttpServletRequest getRequest():获取request隐藏对象;
Ø HttpServletResponse getResponse:获取response隐藏对象;
Ø HttpSession getSession():获取session隐藏对象;
Ø ServletContext getServletContext():获取application隐藏对象;
JspException getException():获取exception隐藏对象转换后的JspException对象。
获取当前项目路劲:
<%
String myPath = pageContext.getServletContext().getContextPath();
%>
<hr>
<%=myPath %>