MapString,Integer?routes?=?new?HashMapString,?Integer();
創新互聯是一家集網站建設,索縣企業網站建設,索縣品牌網站建設,網站定制,索縣網站建設報價,網絡營銷,網絡優化,索縣網站推廣為一體的創新建站企業,幫助傳統企業提升企業形象加強企業競爭力。可充分滿足這一群體相比中小企業更為豐富、高端、多元的互聯網需求。同時我們時刻保持專業、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們為更多的企業打造出實用型網站。
//struts2中的ServletActionContext;
//使用session保存用戶的瀏覽記錄
ServletActionContext.getRequest().getSession().setAttribute("record",routes);
//訪問路徑
String?route?=?"./index.html";
if?(routes.containsKey(route)){
routes.put(route,routes.get("")+1);
}else{
routes.put(route,1);
}
public class Counter {
private int count;
// 每訪問一次,計數器自加一
public int getCount() {
return ++count;
}
public void setCount(int count) {
this.count = count;
}
}
%-- 定義一個 session 范圍內的計數器 記錄個人訪問信息 --%
jsp:useBean id="personCount" class="com.helloweenvsfei.jspweb.bean.Counter" scope="session" /
%-- 定義一個 application 范圍內的計數器 記錄所有人的訪問信息 --%
jsp:useBean id="totalCount" class="com.helloweenvsfei.jspweb.bean.Counter" scope="application" /
div align="center"
form action="method.jsp" method="get"
fieldset style='width: 300'
legend計數器/legend
table align="center" width="400"
tr
td width=150 align="right" style="font-weight:bold; "您的訪問次數:/td
td
%-- 獲取個人的 訪問次數 --%
jsp:getProperty name="personCount" property="count" / 次
/td
/tr
tr
td width=150 align="right" style="font-weight:bold; "總共的訪問次數:/td
td
%-- 獲取所有人的 訪問次數 --%
jsp:getProperty name="totalCount" property="count" / 次
/td
/tr
/table
/fieldset
/form
/div
希望你能幫到你
DIV class="h"
%-- 記錄網站訪問次數 --%
%
Integer counter = (Integer)application.getAttribute("counter"); //先從application里面獲取計數器的key的值
if(counter==null){
//如果該值為null,說明第一次訪問
application.setAttribute("counter",1);
counter=(Integer)application.getAttribute("counter");
}else {
//如果該值不為空,取出來進行累加
int i = counter.intValue();
i++;
application.setAttribute("counter",i);//累加后再放進去
}
%
% User user =(User)session.getAttribute("users"); %
%="歡迎"+user.getName() % |您是第%=counter.intValue()%位訪客
/DIV
謝謝~
本文題目:訪問記錄的java代碼 Java歷史記錄代碼
網頁鏈接:http://vcdvsql.cn/article0/hiooio.html
成都網站建設公司_創新互聯,為您提供軟件開發、電子商務、小程序開發、自適應網站、品牌網站建設、商城網站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯