您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > JSP >

JSP隐式对象(7)

来源:未知 责任编辑:责任编辑 发表时间:2014-01-25 11:35 点击:

 
9. String getRealPath( String path ) ;
返回给定虚拟路径所对应物理路径。
 
10. RequestDispatcher getNamedDispatcher( String name ) ;
为指定名字的Servlet对象返回一个RequestDispatcher对象的实例。
 
11. RequestDispatcher getRequestDispatcher( String path ) ;
返回一个RequestDispatcher对象的实例。
 
12. URL getResource( String path ) ;
返回指定的资源路径对应的一个URL对象实例,参数要以"/"开头。
 
13. InputStream getResourceAsStream( String path ) ;
返回一个由path指定位置的资源的InputStream对象实例。
 
14. Set getResourcePaths( String path ) ;
返回存储在web-app中所有资源路径的集合。
 
15. String getServerInfo() ;
取得应用服务器版本信息。
 
16. Servlet getServlet( String name ) ;
在ServletContext中检索指定名称的servlet。
 
17. Enumeration getServlets() ;
返回ServletContext中所有servlet的集合。
 
18. String getServletContextName() ;
返回本web应用的名称。
 
19. Enumeration getServletContextNames() ;
返回ServletContext中所有servlet的名称集合。
 
20. void log( Exception ex, String msg ) ;
void log( String msg, Throwable t ) ;
void log( String msg ) ;
把指定的信息写入servlet log文件。
 
21. void removeAttribute( String name ) ;
移除指定名称的application属性。
 
22. void setAttribute( String name, Object value ) ;
设定指定的application属性的值。
 
 
⑦config - javax.servlet.ServletConfig
config对象用来存放Servlet初始的数据结构。
 
方法:
1. String getInitParameter( String name ) ;
返回名称为name的促使参数的值。
 
2. Enumeration getInitParameters() ;
返回这个JSP所有的促使参数的名称集合。
 
3. ServletContext getContext() ;
返回执行者的servlet上下文。
 
4. String getServletName() ;
返回servlet的名称。
 
 
⑧exception - java.lang.Throwable
错误对象,只有在JSP页面的page指令中指定isErrorPage="true"后,才可以在本页面使用exception对象。
 
方法:
1. Throwable fillInStackTrace() ;
将当前stack信息记录到exception对象中。
 
2. String getLocalizedMessage() ;
取得本地语系的错误提示信息。
 
3. String getMessage()
取得错误提示信息。
 
4. StackTrackElement[] getStackTrace() ;
返回对象中记录的call stack track信息。
 
5. Throwable initCause( Throwable cause ) ;
将另外一个异常对象嵌套进当前异常对象中。
 
6. Throwable getCause() ;
取出嵌套在当前异常对象中的异常。
 
7. void printStackTrace() ;
void printStackTrace( printStream s ) ;
void printStackTrace( printWriter s ) ;
打印出Throwable及其call stack trace信息。
 
8. void setStackTrace( StackTraceElement[] stackTrace )
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • JSP与Servlet
  • 自己动手写MiniBBS系列(基本篇)之用户登录
  • JSP取当前日期
  • JDBC 入门(一)
  • 打开一个jsp页面默认查询所有数据,调用action
  • 使用JSP标签库验证用户的输入(2)完
  • 自定义JSP标签(tag)浅议
  • WIN98/2000下的jsp服务器
  • JSP内建对象(二)
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1