JSP开发中应用程序在线人口统计的操作方法
我们在JSP开发中,都要将这些数据显示到前端显示,那么在开发中程序员应该如何操作呢?本文是爱站技术频道小编介绍的JSP开发中应用程序在线人口统计的操作方法,是很实用的技巧哦,希望对你学习这方面只是有所帮助。
具体实现方法如下:
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
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");
}
%>
简单的页面访问计数器
欢迎访问此页面,您是个访问用户
希望爱站技术频道介绍的JSP开发中应用程序在线人口统计的操作方法对大家有所帮助,js.aizhan.com是值得大家选择的,我们也会继续保持初心。