色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

JSP的Cookie在登錄中的使用

瀏覽:314日期:2022-06-07 09:30:06

JSP的Cookie在登錄中的使用

一 功能需求

實現記憶用戶名和密碼功能。

二 代碼

1、login.jsp

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    <title>My JSP "index.jsp" starting page</title>    <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">      <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="This is my page">    <!--    <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    --> </head>  <body>  <h1>用戶登錄</h1>  <hr>  <%   request.setCharacterEncoding("utf-8");   String username="";   String password = "";   Cookie[] cookies = request.getCookies();   if(cookies!=null&&cookies.length>0)   {      for(Cookie c:cookies)      {       if(c.getName().equals("username"))       {  username = URLDecoder.decode(c.getValue(),"utf-8");       }       if(c.getName().equals("password"))       {  password = URLDecoder.decode(c.getValue(),"utf-8");       }      }   }  %>  <form name="loginForm" action="dologin.jsp" method="post">    <table>     <tr>      <td>用戶名:</td>      <td><input type="text" name="username" value="<%=username %>"/></td>     </tr>     <tr>      <td>密碼:</td>      <td><input type="password" name="password" value="<%=password %>" /></td>     </tr>     <tr>      <td colspan="2"><input type="checkbox" name="isUseCookie" checked="checked"/>十天內記住我的登錄狀態</td>     </tr>     <tr>      <td colspan="2" align="center"><input type="submit" value="登錄"/><input type="reset" value="取消"/></td>     </tr>    </table>  </form> </body></html>

2、dologin.jsp

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    <title>My JSP "dologin.jsp" starting page</title>      <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">      <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="This is my page">    <!--    <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    -->  </head>  <body>  <h1>登錄成功</h1>  <hr>  <br>  <br>  <br>  <%    request.setCharacterEncoding("utf-8");    //首先判斷用戶是否選擇了記住登錄狀態    String[] isUseCookies = request.getParameterValues("isUseCookie");    if(isUseCookies!=null&&isUseCookies.length>0)    {     //把用戶名和密碼保存在Cookie對象里面     String username = URLEncoder.encode(request.getParameter("username"),"utf-8");     //使用URLEncoder解決無法在Cookie當中保存中文字符串問題     String password = URLEncoder.encode(request.getParameter("password"),"utf-8");          Cookie usernameCookie = new Cookie("username",username);     Cookie passwordCookie = new Cookie("password",password);     usernameCookie.setMaxAge(864000);     passwordCookie.setMaxAge(864000);//設置最大生存期限為10天     response.addCookie(usernameCookie);     response.addCookie(passwordCookie);    }    else    {     Cookie[] cookies = request.getCookies();     if(cookies!=null&&cookies.length>0)     {       for(Cookie c:cookies)       {if(c.getName().equals("username")||c.getName().equals("password")){  c.setMaxAge(0); //設置Cookie失效  response.addCookie(c); //重新保存。}       }     }    }  %>  <a href="users.jsp" rel="external nofollow" target="_blank">查看用戶信息</a>   </body> </html>

3、users.jsp

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    <title>My JSP "users.jsp" starting page</title>      <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">      <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="This is my page">    <!--    <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" >    -->  </head>  <body>  <h1>用戶信息</h1>  <hr>  <%   request.setCharacterEncoding("utf-8");   String username="";   String password = "";   Cookie[] cookies = request.getCookies();   if(cookies!=null&&cookies.length>0)   {      for(Cookie c:cookies)      {       if(c.getName().equals("username"))       {  username = URLDecoder.decode(c.getValue(),"utf-8");       }       if(c.getName().equals("password"))       {  password = URLDecoder.decode(c.getValue(),"utf-8");       }      }   }  %>  <BR>  <BR>  <BR>     用戶名:<%=username %><br>     密碼:<%=password %><br> </body></html>

三 測試

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

標簽: JSP
相關文章:
主站蜘蛛池模板: 国产精品一区高清在线观看 | 国产日韩欧美一区二区三区在线 | 成年女人在线视频 | gdcm01果冻传媒 | 亚洲最大激情中文字幕 | 天天看有黄有色大片 | 国产精品一区伦免视频播放 | 一区二区三区 日韩 | 自怕偷自怕亚洲精品 | 成年男女免费视频 | 日韩3级| 国产精品亚洲四区在线观看 | 天堂视频免费看 | 国产一二三区在线观看 | 欧美成人另类69 | 欧美一级免费大片 | 成人免费精品视频 | 日本一区二区三区四区无限 | 99精品免费视频 | 国产成人久久精品二区三区牛 | 99精品小视频 | 在线观看精品国产 | 日韩精品亚洲专区在线观看 | 亚洲午夜成激人情在线影院 | 亚洲另类在线视频 | 亚洲自偷自拍另类12p | 色老头老太做爰视频在线观看 | 国产成人综合网在线观看 | 国内成人精品亚洲日本语音 | 亚洲男人的天堂久久香蕉网 | 一级做a爰片久久毛片美女 一级做a爰片久久毛片免费看 | 精品无码三级在线观看视频 | 欧美视频在线观看一区二区 | 波多野结衣在线观看3人 | 久久精品亚洲乱码伦伦中文 | 男人的天堂黄色 | 日本一区二区高清不卡 | 日本精品高清一区二区2021 | 成人黄色免费网址 | 欧美成人资源 | gv手机在线观看 |