68 cookie在登录中的作用

简介: 68 cookie在登录中的作用

定义一个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%>">
     <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">
     -->
   </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>

image.png

相关文章
一个困扰几天的难题 cookie 登录
一个困扰几天的难题 cookie 登录
59 0
|
3月前
|
数据安全/隐私保护
在某网站的登录页面登录时如果选择“记住用户名”,登录成功后会跳转到一个中间层(页面代码将登录的用户名和密码存在cookie),中间页面中存在一个超链接,单击超链接可以链接到第三个页面查看信息。若选择“
该博客文章通过示例代码和运行结果截图,展示了网站登录过程中如何通过中间层页面使用cookies技术实现“记住用户名”功能,并在点击超链接后查看保存的用户名和密码信息。
在某网站的登录页面登录时如果选择“记住用户名”,登录成功后会跳转到一个中间层(页面代码将登录的用户名和密码存在cookie),中间页面中存在一个超链接,单击超链接可以链接到第三个页面查看信息。若选择“
|
3月前
|
数据安全/隐私保护
|
3月前
|
Java 应用服务中间件 nginx
【Azure 环境】Azure应用程序网关设置set_Cookie=key=value; SameSite=Strict; HTTPOnly,AzureAD登录使用cookie时使用不了的案例记录
【Azure 环境】Azure应用程序网关设置set_Cookie=key=value; SameSite=Strict; HTTPOnly,AzureAD登录使用cookie时使用不了的案例记录
|
5月前
|
安全 Java Maven
如何使用jsoup实现网站登录,cookie保存,查询信息
【6月更文挑战第11天】如何使用jsoup实现网站登录,cookie保存,查询信息
187 1
|
5月前
|
安全 Java Maven
使用jsoup实现网站登录,cookie保存,查询信息
【6月更文挑战第7天】使用jsoup实现网站登录,cookie保存,查询信息
86 0
|
6月前
|
数据采集 存储 安全
登录态数据抓取:Python爬虫携带Cookie与Session的应用技巧
登录态数据抓取:Python爬虫携带Cookie与Session的应用技巧
|
6月前
|
存储 JSON 算法
登录认证-登录校验-会话技术方案选择和对比(cookie、session和JWT令牌)
登录认证-登录校验-会话技术方案选择和对比(cookie、session和JWT令牌)
143 0
|
12月前
利用cookie进行登录
利用cookie进行登录
74 0
|
JSON NoSQL Redis
cookie 免密登录了解一下
cookie 免密登录了解一下
cookie 免密登录了解一下