统计在线人数
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"));
以上是关于统计在线人数的主要内容,如果未能解决你的问题,请参考以下文章