application————web
Posted 心静思远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了application————web相关的知识,希望对你有一定的参考价值。
application
作用域:
只要web服务器不关闭就一直存在
统计页面的统计次数
一个用户 多次刷新也统计
多个用户访问
思路:
需要一个变量 count 记录index.jsp访问次数
方法
public void setAttribute(String name,Object obj);
public Object getAttrbute(String name );
【统计页面】
<%
//实现访问次数的统计
//1、先获取applicationd的属性值
Object count =application.getAttribute("count");
if(count==null){
//2、用户第一次访问 application没有这个值,所以设置一个application
application.setAttribute("count",1);
}else{
//3、用户第二次以上访问,已经有了application这个值,所以需要再原基础上再叠加+1
Integer intCount = (Integer) count;
application.setAttribute("count",intCount+1);
}
//将值取出来
Integer icount=(Integer)application.getAttribute("count");
//打印
out.print("访问次数是:"+icount);
%>
以上是关于application————web的主要内容,如果未能解决你的问题,请参考以下文章
add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段
add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段