黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

jsp cookie+session實(shí)現(xiàn)簡(jiǎn)易自動(dòng)登錄

本文實(shí)例為大家分享了jsp cookie+session實(shí)現(xiàn)簡(jiǎn)易自動(dòng)登錄的具體代碼,供大家參考,具體內(nèi)容如下

關(guān)閉瀏覽器只會(huì)使存儲(chǔ)在客戶端瀏覽器內(nèi)存中的session cookie失效,不會(huì)使服務(wù)器端的session對(duì)象失效。
如果設(shè)置了過期時(shí)間,瀏覽器就會(huì)把cookie保存到硬盤上,關(guān)閉后再次打開瀏覽器,這些cookie依然有效直到超過設(shè)定的過期時(shí)間。

login.jsp

<%@ page language="java" contenttype="text/html; charset=utf-8"
 pageencoding="utf-8"%>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
 <head>
  <title>登錄</title> 
 </head>
 
 <body> 
 <form action="sucess.jsp" method="post">
 用戶名:<input name="username" /><br/>
 
 <%--<input type="checkbox" name="time" />記住用戶名 --%>
   
   <input type="submit" name="submit" id="submit" value="登錄"/>
 </form>
 <% 
 //讀取session值
 string val= (string)session.getattribute("name");
 //如果session不存在
 if(val==null){
  val ="不存在";
 }
 out.print("當(dāng)前\""+val+"\"用戶可自動(dòng)登錄");
 %>
 
 </body>
</html>

success.jsp

<%@ page language="java" contenttype="text/html; charset=utf-8"
 pageencoding="utf-8"%>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>主不在乎</title>
</head>
<body>
<%
 //獲取username
 string name = request.getparameter("username");
 //判斷用戶名是否存在
 if(name != null && !name.trim().equals("")){ 
 //string[] time = request.getparametervalues("time");
 
 //設(shè)置session值,(login頁面可讀取)
 session.setattribute("name", name);
 
 //設(shè)置cookie
 cookie cookie = new cookie("name",name); 
 cookie.setmaxage(30*24*3600); //設(shè)置cookie有效期為30天   
 response.addcookie(cookie); //在客戶端保存cookie
 
 out.println("welcome: " + name+"歡迎登錄");
 } 
 else{
 response.sendredirect("main.jsp");
 }
 
%>
<a href="login.jsp" >relogin</a>
</body>
</html>

main.jsp

<%@ page language="java" contenttype="text/html; charset=utf-8"
 pageencoding="utf-8"%>
<!doctype html>
<html>
<head>
<meta charset="iso-8859-1">
<title>主不在乎</title>
</head>
<body>

<%
string name=(string)session.getattribute("username");

//獲取cookie
cookie[] cookies = request.getcookies();

//cookie存在
 if(cookies != null && cookies.length > 0){
 for(cookie cookie:cookies){
  //獲取cookie的名字
  string cookiename = cookie.getname();
  //判斷是否與name相等
  if(cookiename.equals("name")){
  //獲取cookie的值
  string value = cookie.getvalue();
  name = value;
  }
  }
 out.println("welcome again: " + name+"歡迎登錄");
 
//*************************
 // 另一種寫法
 
 string v=null;
 for(int i=0;i<cookies.length;i++){
 if(cookies[i].getname().equals("name")){
 v=cookies[i].getvalue();
 }
 }
 if(v!=null){
 out.println(" hello world "+v);
 }
 
 }
//*************************
 else {
 response.sendredirect("login.jsp");
 }

%>


<a href="login.jsp" >relogin</a>

</body>
</html>

運(yùn)行l(wèi)ogin.jsp

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。

相關(guān)文章