JSP简单实现统计网页访问次数
Posted xtu熊大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP简单实现统计网页访问次数相关的知识,希望对你有一定的参考价值。
JSP简单实现统计网页访问次数
需求:统计网页的访问次数
核心思想:利用application对象,将访问次数的信息放入application对象中,每次访问就+1。这里利用了application对象每次只有当应用关闭才被销毁的特性。
核心代码如下:
<% Object obj =application.getAttribute("counter"); if(obj==null){ application.setAttribute("counter", new Integer(1)); out.print("该页面已被访问1次!"); }else{ int count=Integer.parseInt(obj.toString()); count++; out.print("该页面已被访问了"+count+"次!"); application.setAttribute("counter", count); } %>
以上是关于JSP简单实现统计网页访问次数的主要内容,如果未能解决你的问题,请参考以下文章