基础5——JSP
2)九大隐式对象综述
把握的核心:明白该对象有什么核心方法,之后就直接在脚本中引用该对象的方法就可以了。
①request对象
常用方法:
②response对象
常用方法:
序号 方 法 说 明
1 String getCharacterEncoding() 返回响应用的是何种字符编码
2 ServletOutputStream getOutputStream() 返回响应的一个二进制输出流
3 PrintWriter getWriter() 返回可以向客户端输出字符的一个对象
4 void setContentLength(int len) 设置响应头长度
5 void setContentType(String type) 设置响应的MIME类型
6 sendRedirect(java.lang.String location) 重新定向客户端的请求
例子:
//设置页面每隔一秒自动刷新一次 response.setHeader("Refresh","1"); //设置10秒后自动跳转到anotherPage.jsp response.setHeader("Refresh","10;URL=anotherPage.jsp"); //使用response对象的sendRedirect()方法可以实现页面直接跳转 response.sendRedirect("anotherPage.jsp"); //使用response对象禁用页面缓存 response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); response.setDateHeader("Expires",0);
③page对象
常用方法:
class getClass() 获取page对象的类
int hashCode() 获取page对象的hash码
例子:
<body> 本页面对于的servlet为:<% =page.getClass() %><br> 本页面对于的servlet hash码为:<% =page.hashCode() %><br> 本页面使用的jsp引擎为:<% =((HttpJspPage)page).getServletInfo() %><br> </body>
④pageContext对象
常用的方法:
1 JspWriter getOut() 返回当前客户端响应被使用的JspWriter流(out)
2 HttpSession getSession() 返回当前页中的HttpSession对象(session)
3 Object getPage() 返回当前页的Object对象(page)
4 ServletRequest getRequest() 返回当前页的ServletRequest对象(request)
5 ServletResponse getResponse() 返回当前页的ServletResponse对象(response)
6 Exception getException() 返回当前页的Exception对象(exception)
7 ServletConfig getServletConfig() 返回当前页的ServletConfig对象(config)
8 ServletContext getServletContext() 返回当前页的ServletContext对象(application)
9 void setAttribute(String name,Object attribute) 设置属性及属性值
10 void setAttribute(String name,Object obj,int scope) 在指定范围内设置属性及属性值
11 public Object getAttribute(String name) 取属性的值
12 Object getAttribute(String name,int scope) 在指定范围内取属性的值
13 public Object findAttribute(String name) 寻找一属性,返回起属性值或NULL
14 void removeAttribute(String name) 删除某属性
15 void removeAttribute(String name,int scope) 在指定范围删除某属性
16 int getAttributeScope(String name) 返回某属性的作用范围
17 Enumeration getAttributeNamesInScope(int scope) 返回指定范围内可用的属性名枚举
18 void release() 释放pageContext所占用的资源
19 void forward(String relativeUrlPath) 使当前页面重导到另一页面
20 void include(String relativeUrlPath) 在当前位置包含另一文件
例子:
<% //设置一个属性name,其值为pagecntext,取值范围为request pageContext.setAttribute("name","PageContext对象",pageContext.REQUEST_SCOPE); pageContext.forward("PageContext.jsp"); %>
⑤out对象
⑥session对象
⑦application对象
⑧config对象
⑨exception对象
注意以下代码的执行顺序性:
以下的配置可以配置out的缓冲空间大小: