Application实现的ServletContext类和接口可存放全局变量
客户端共享一个session而Application为多个应用程序保存信息
常用的方法同样是getAttribute(),setAttribute(),remoteAttribute()
getConnectext(String uripath)用于返回制定webApplication的application对象
测试程序
<%
String strNumber =(String)application.getAttribute("count");//获得一个Object对象
int count = 0;
//如果存在说明有访问者
if(strNumber!=null){
count=Integer.parseInt(strNumber)+1;
application.setAttribute("count",String.valueof(count));
}
%>
你是第<%=application.getAttribute("count")%>访问者
本文详细介绍了如何利用Application实现的ServletContext类来存放全局变量,客户端共享session,而Application则为多个应用程序保存信息。通过getAttribute()、setAttribute()和removeAttribute()方法操作全局变量,并展示了如何获取当前应用中的访问者数量。
134

被折叠的 条评论
为什么被折叠?



