程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> [JSP]使用application統計所有用戶對某網頁的訪問次數

[JSP]使用application統計所有用戶對某網頁的訪問次數

編輯:關於JSP

因為使用application對象完成累計的功能,所以當   (1)當前的Wen應用重新部署   (2)Tomcat服務器重啟   計數器要重新開始計數。     jsp代碼如下:

 
<%@ page language="java" contentType="text/html; charset=UTF-8"  
    pageEncoding="UTF-8"%>  
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
<html>  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
<title>Insert title here</title>  
</head>  
<body>  
    <%  
    //判斷application對象中有沒有保存名為count的參數  
    //如果沒有,在application對象中新增一個名為count的參數  
    if(application.getAttribute("count")==null){  
        application.setAttribute("count", new Integer(0));  
    }  
    Integer count = (Integer)application.getAttribute("count");  
    //使用application對象讀取count參數的值,再在原值基礎上累加1  
    application.setAttribute("count",new Integer(count.intValue()+1));  
%>  
    <h2>  
        <!-- 輸出累加後的count參數對應的值 -->  
        歡迎您訪問,本頁面已經被訪問過 <font color="#ff0000"><%=application.getAttribute("count") %></font>次。。。。  
    </h2>  
</body>  
</html>  

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved