~Jsp可以进行简单的页面访问量统计,当然也可以使用Jsp刷访问量。
1:第一种使用全局变量<%! int i=0;%>进行页面的访问量统计,只有新打开一个浏览器才可以进行统计。
2:第二种使用application进行页面的访问量统计,也是打开一个新的浏览器才可以进行统计。
第一和第二种主要是通过session.isNew()控制的,只有当打开新的浏览器才可以使访问量增加
3:第三种是刷访问量的,当刷新即增加访问量,要么说程序改变世界呢。
1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2 pageEncoding="UTF-8"%>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4 <html>
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>页面访问量的统计</title>
8 </head>
9 <body>
10
11 <!-- 第一种方式进行统计访问人数,使用定义的全局变量 -->
12 <%! int i=0;%>
13 <%
14 //统计访问人数,应该放到application中,是共享的。
15 if(session.isNew()){
16 i=i+1;
17 }
18 %>
19 您是第<%=i %>个访问用户<br/>
20
21
22 <!-- 第二种方式进行统计访问人数,通过application先获取后设置值 -->
23 <%! int j=0; %>
24 <%
25 if(session.isNew()){
26 j++;
27 }
28 application.setAttribute("count", j);
29 Integer count=(Integer)application.getAttribute("count");
30 %>
31 您是第<%=j %>个访问用户<br/>
32
33
34 <!-- 第三种,刷访问量的方式 -->
35 <%
36 Integer count2=(Integer)application.getAttribute("count2");
37 if(count2==null){
38 count2=0;
39 }
40 application.setAttribute("count2", count2+1);
41 %>
42 您是第<%=count2 %>个访问用户《刷访问量的方式》
43 </body>
44 </html>
效果如下所示: