//**中有bug
//格式化當前時間
date date=
newdate()
; ******dateformat sdf=
new******dateformat
("yyyy-mm-dd hh:mm:ss");
string s = sdf.
format
(date)
;//建立cookie 記錄最新的訪問時間,並儲存到response緩衝區中
cookie co =
newcookie
("liyong"
, s)
; co.
setmaxage(10
*60);
//設定10分鐘
response.
addcookie
(co)
;//獲得客戶端攜帶的cookie-----lasttime
cookie[
] cookies = request.
getcookies()
; string lasttime=null;
if(cookies!=null)}}
//對lasttime進行判斷,並將response緩衝區的所有資訊一起返回給客戶端
if(lasttime==null)
else
//上面的有bug,cookie裡面不能存的有空格
//格式化當前時間 cookie裡面不能存的有空格 所以不能存這種情形的時間,只能為毫秒string型別
/*date date=new date();
******dateformat sdf=new ******dateformat("yyyy-mm-dd hh:mm:ss");
string s = sdf.format(date);*/
//建立cookie 記錄最新的訪問時間,並儲存到response緩衝區中
cookie co =
newcookie
("liyong"
,system.
currenttimemillis()
+"");
co.setmaxage(10
*60);
//設定10分鐘
co.setpath
(getservletcontext()
.getcontextpath()
);response.
addcookie
(co)
;//獲得客戶端攜帶的cookie-----lasttime
cookie[
] cookies = request.
getcookies()
; string lasttime=null;
if(cookies!=null)}}
//對lasttime進行判斷,並將response緩衝區的所有資訊一起返回給客戶端
if(lasttime==null)
else
}
Cookie實現使用者上次訪問時間
會寫給使用者最新cookie 16 cookie cookie new cookie lasttime system.currenttimemillis 17 cookie.setmaxage 1 3600 24 30 快取時間是30天 18 cookie.setpath day03 我希望整個專案...
查詢使用者上次登入時間問題
今天遇到乙個看似簡單卻很糾結的問題,但最後還是解決了 我用的是oracle 根據網上提供的好多都不行,具體貼圖 這是登入表的字段,每個使用者登入時候會insert使用者的id登入時間 現在使用者要顯示上次登入的時間該怎麼取?下面是登陸時間的倒敘排列 如果拿最新的登入時間如下所寫 但是取上次登入記錄 ...
設定系統登入時不顯示 顯示上次登入的使用者名稱
使用者在登入windows 2000 xp 2003時,windows 2000 xp 2003會自動在在登入對話方塊中顯示出上次登入的使用者名稱,如果這是一台公共計算機,就有可能造成使用者名稱的洩露,從而給一些不懷好意的人以可乘之機。360安全空間s0jb vu c j 如果你是系統管理員,你可以...