① 用java創建的cookie,在頁面上用js怎麼可以獲取呀!
// 函數名稱: getCookie
// 函數功能: 讀取cookie函數
// 入口參數: Name:cookie名稱
function getCookie(Name) {
var search = Name + "=" ;
if(document.cookie.length > 0) {
offset = document.cookie.indexOf(search) ;
if(offset > -1) {
offset += search.length ;
end = document.cookie.indexOf(";", offset)
if(end > -1) {
end = document.cookie.length ;
}
return unescape(document.cookie.substring(offset, end)) ;
} else {
return "" ;
}
}
}
② java的用戶登錄怎樣記住上次登錄的用戶名和密碼
java的用戶登錄記住上次登錄的用戶名和密碼的方式是使用cookie來保存在本地,並且需要加密保存,實例如下:
HttpServletRequestrequest=ServletActionContext.getRequest();
Cookiecookies[]=request.getCookies();//聲明一個cookie對象
Stringlogin=null;//登錄的用戶名
Stringpassword=null;//登錄的密碼
for(inti=0;i<cookies.length;i++){//取最後一次保存的用戶名和密碼
if(cookies[i].getName().equals("userName")){
login=cookies[i].getValue();
}
if(cookies[i].getName().equals("password")){
password=cookies[i].getValue();
break;
}
}
if(!AssertUtil.isEmpty(login)&&!login.equals("JSESSIONID")){
request.setAttribute("login",login);
request.setAttribute("password",password);
}