芷的天地

JSP内置对象之六——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>

 

参考地址:http://edu.codepub.com/2009/1018/16461_3.php

posted on 2010-07-13 15:10    阅读(584)  评论(0编辑  收藏  举报

导航