最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp 利用application统计在线人数代码
时间:2022-06-29 00:16:06 编辑:袖梨 来源:一聚教程网
jsp教程 利用application统计在线人数代码
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
application
<%!
Integer number;//
synchronized void numberVisiter()
{
ServletContext application = getServletContext();
Integer num = (Integer)application.getAttribute("count");
if(num == null)//如果是第一个访问者
{
num = new Integer(1);
application.setAttribute("count",num);
}
else
{
num = new Integer(num.intValue() + 1);
application.setAttribute("count",num);
}
}
%>
<%
if(session.isNew())
{
numberVisiter();
Integer number = (Integer)application.getAttribute("count");
}
%>
简单的页面访问计数器
欢迎访问此页面,您是<%=number%>个访问用户
相关文章
- 曙光英雄星盘铭文玩法攻略 曙光英雄星石获取攻略 07-01
- PS淘宝电商电子产品笔记本电脑后期修图详细教程 07-01
- 曙光英雄各职业星盘推荐 曙光英雄怎么搭配星盘 07-01
- Goal Champion(GC币)能上涨吗 07-01
- 柴犬币表示,SHIB不仅走红,还改变了游戏规则 07-01
- 魔竞革命角色分析 魔竞革命角色哪些角色好 07-01