好学IT学院:IT信息技术分享交流平台
标签:J2EE  来源:互联网  作者:本站整理  发布时间:2010-03-01  ★★★加入收藏〗〖手机版
摘要:1.request对象客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。序号/方 法/说 明1 object getAttribute(String n……

6.application对象

application对象实现了用户间数据的共享,可存放全局变量。它开始于服务器的启动,直到服务器的关闭,在此期间,此对象将一直存在;这样在用户的前后连接或不同用户之间的连接中,可以对此对象的同一属性进行操作;在任何地方对此对象属性的操作,都将影响到其他用户对此的访问。服务器的启动和关闭决定了application对象的生命。它是ServletContext类的实例。

序号/方 法/说 明
1   Object getAttribute(String name) 返回给定名的属性值
2   Enumeration getAttributeNames() 返回所有可用属性名的枚举
3   void setAttribute(String name,Object obj) 设定属性的属性值
4   void removeAttribute(String name) 删除一属性及其属性值
5   String getServerInfo() 返回JSP(SERVLET)引擎名及版本号
6   String getRealPath(String path) 返回一虚拟路径的真实路径
7   ServletContext getContext(String uripath) 返回指定WebApplication的application对象
8   int getMajorVersion() 返回服务器支持的Servlet API的最大版本号
9   int getMinorVersion() 返回服务器支持的Servlet API的最大版本号
10   String getMimeType(String file) 返回指定文件的MIME类型
11   URL getResource(String path) 返回指定资源(文件及目录)的URL路径
12   InputStream getResourceAsStream(String path) 返回指定资源的输入流
13   RequestDispatcher getRequestDispatcher(String uripath) 返回指定资源的RequestDispatcher对象
14   Servlet getServlet(String name) 返回指定名的Servlet
15   Enumeration getServlets() 返回所有Servlet的枚举
16   Enumeration getServletNames() 返回所有Servlet名的枚举
17   void log(String msg) 把指定消息写入Servlet的日志文件
18   void log(Exception exception,String msg) 把指定异常的栈轨迹及错误消息写入Servlet的日志文件
19   void log(String msg,Throwable throwable) 把栈轨迹及给出的Throwable异常的说明信息 写入Servlet的日志文件

<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>APPLICATION对象_例1</title><head>
<body><br>
JSP(SERVLET)引擎名及版本号:<%=application.getServerInfo()%><br><br>
返回/application1.jsp虚拟路径的真实路径:<%=application.getRealPath("/application1.jsp")%><br><br>
服务器支持的Servlet API的大版本号:<%=application.getMajorVersion()%><br><br>
服务器支持的Servlet API的小版本号:<%=application.getMinorVersion()%><br><br>
指定资源(文件及目录)的URL路径:<%=application.getResource("/application1.jsp")%><br><br><!--可以将application1.jsp换成一个目录-->
<br><br>
<%
   application.setAttribute("name","霖苑计算机编程技术培训学校");
   out.println(application.getAttribute("name"));
   application.removeAttribute("name");
   out.println(application.getAttribute("name"));
%>
</body>
</html>

<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>APPLICATION对象_例2</title><head>
<body><br>
<!--由于application一直存在于服务器端,可以利用此特性对网页记数-->
<%
if(application.getAttribute("count")==null)
application.setAttribute("count","1");
else
application.setAttribute("count",Integer.toString(Integer.valueOf(application.getAttribute("count").toString()).intValue()+1));
%>
你是第<%=application.getAttribute("count")%>位访问者
</body>
<!--由于getAttribute()方法得到的是一个Object类型对象,用getString()方法转化为String类型-->
<!--用Integer类的valueOf()方法把得到的String转化成Integer的对象,在用intValue()方法得到int型,再加1,最后把计算的结果用Integer.toString()方法转化成setAttribute()方法所要求的String类型-->
</html>

<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>APPLICATION对象_例3</title><head>
<body><br>
<!--由于application一直存在于服务器端,可以利用此特性对网页记数-->
<%
String str=application.getAttribute("count").toString();//getAttribute("count")返回的是Object类型
int i=0;
if(str==null)
application.setAttribute("count","1");
else
i=Integer.parseInt(str); //out.println(i);
application.setAttribute("count",++i+"");
%>
你是第<%=application.getAttribute("count")%>位访问者
</body>
</html>

7.exception对象

exception对象是一个例外对象,当一个页面在运行过程中发生了例外,就产生这个对象。如果一个JSP页面要应用此对象,就必须把isErrorPage设为true,否则无法编译。他实际上是java.lang.Throwable的对象

序号/方 法/说 明
1   String getMessage() 返回描述异常的消息
2   String toString() 返回关于异常的简短描述消息
3   void printStackTrace() 显示异常及其栈轨迹
4   Throwable FillInStackTrace() 重写异常的执行栈轨迹

通过ASP.NET实现Web打印的三种方法
  从事过WEB/BS开发的朋友应该都深有体会,在web程序中打印不再象应用程序中那样便于控制了,web程序天生的一些特性造成了这个缺…
  • 好学考试H5触屏版开放内测
  • 好学触屏公众号虎力全开、杨帆起航!