JSP内置对象详解之page、out、exception、config、pageContext内(2)
config对象常用方法
getServletContext():返回 一个含有服务器相关信息的ServletContext对象。
getIntParameter(String name):返回初始化参数的值。
getIntParameterNames():返回包含了Servlet初始化所需要的所有参数,返回类型是枚举型。
五、
pageContext内置对象介绍
pageContext内置对象是一个比较特殊的对象,它相当于页面中所有其他对象功能的最大集成者,即使用它可以访问到本页面中所有其他的对象,例如前面已经描述的request、response、out和page对象等。由于在JSP中request和response等对象本来就可以通过直接调用方法使用,所以pageContext对象在实际JSP开发中很少使用到。
pageContext对象常用方法
getRequest():返回当前页面中的request对象。
getResponse():返回当前页面中的response对象。
getSession():返回当前页面中的session对象。
getServletContext():返回当前页面中的application对象。
getPage():返回当前页面中的page对象。
getOut():返回当前页面中的out对象。
getException():返回当前页面中的exception对象。
getServletConfig():返回当前页面中的config对象。
www.2cto.com
setAttribute(String name):给指定的属性名设置属性值。
getAttribute(String naem):根据属性名找到相应的属性值。
setAttribute(String name, Object obj, int scope):在给定的范围内设置相应的属性值。
getAttribute(String name, int scope):在给的范围内获取相应的属性值。
findAttribute(String name):寻找一个属性并返回,如果查找不到则返回null。
removeAttribute(String name):通过属性名删除掉某个属性。
removeAttribute(String name, int scope):在指定的某个范围里删除某个属性。
getAttributeScope(String name scope):返回某属性的作用域。
getAttributeNamesInScope(int scope):返回指定范围内的所有属性名的枚举。
release():释放pageContext占据的所有资料。
forward(String relativeURLpath):使用当前页面重导到另一个页面。
include(String relativeURLpath):使用当前位置包含的另一个页面。
相关新闻>>
- 发表评论
-
- 最新评论 更多>>