统计在线人数

Posted 狂妄的老头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计在线人数相关的知识,希望对你有一定的参考价值。

1         ServletContext sc = this.getServletContext();
2         Long personCount = (Long)sc.getAttribute("personCount");
3         if(personCount==null){
4             personCount=(long)0;
5             sc.setAttribute("personCount", personCount);
6             
7         }
8         sc.setAttribute("personCount", (personCount+1));
9         System.out.println("当前在线人数:"+sc.getAttribute("personCount"));    

 

以上是关于统计在线人数的主要内容,如果未能解决你的问题,请参考以下文章

javaweb中实现在线人数统计

javaweb中实现在线人数统计

java web用监听器listener简单的实现在线统计人数

利用php比较精确的统计在线人数的办法

统计在线人数

Java统计用户在线人数