码迷,mamicode.com
首页 > 其他好文 > 详细

访问量统计

时间:2019-06-11 10:58:51      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:src   write   too   htm   extend   nod   pbc   rcv   app   

技术图片

 

 

public class Aservlet extends HttpServlet {
     
     public void doGet(HttpServletRequest request,  HttpServletResponse response)
                throws ServletException, IOException {
           //获取ServletContext对象
           //从对象中获取名为count的属性
           //如果存在,给访问量+1,然后再保存回去
           //如果不存在,说明时第一次访问,向ServletContext中保存count的属性,值为1
           ServletContext app=this.getServletContext();
           Integer count=(Integer) app.getAttribute("count");
           if(count==null){
                app.setAttribute("count", 1);
           }else{
                app.setAttribute("count", count+1);
           }
           /**
            * 向浏览器输出,需要使用响应对象
            */
           PrintWriter pw=response.getWriter();
           pw.print(count);
     }
}
然后在浏览器访问该servlet,每访问一次会加一。
技术图片技术图片
 

访问量统计

标签:src   write   too   htm   extend   nod   pbc   rcv   app   

原文地址:https://www.cnblogs.com/fantongxue/p/11002081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!