cookie实现登陆页面保存用户名

cookie实现登陆页面保存用户名

大家好,又见面了,我是全栈君。

1.首先是用户名,密码的input 和保存状态的checkbox

[html] 
view plain
 copy

 

  1. <input class=“ipt” type=“text” name=‘username’ value=‘${name}’/>  
  2. <input class=“ipt” type=‘password’ name=‘password’ id=‘password’ />  
  3. <input style=” margin-left:60px; margin-right:10px; ” type=“checkbox” name=“rememberMe” id=“rememberMe” />  

 

没找到怎么保存checkbox的状态,我就自己写了个

 

[html] 
view plain
 copy

 

  1. <script>  
  2.     window.onload = function() {  
  3.         if (‘${name}’ != ”) {  
  4.             document.getElementById(‘rememberMe’).checked = true;  
  5.         } else {  
  6.             document.getElementById(‘rememberMe’).checked = false;  
  7.         }  
  8.     }  
  9. </script>  

 

2.然后在jsp顶部加入java代码,用于读取cookie

[html] 
view plain
 copy

 

  1. <%  
  2.     String name = “”;  
  3.     String psw = “”;  
  4.     String checked = “”;  
  5.     Cookie[] cookies = request.getCookies();  
  6.     if(cookies != null && cookies.length>0){  
  7.         for(int i =0; i<cookies.length; i++){  
  8.             if(cookies[i].getName().equals(“name”)){  
  9.                 name=cookies[i].getValue();  
  10.                 request.setAttribute(“name”,name);  
  11.             }  
  12.                   
  13.             if(cookies[i].getName().equals(“psw”)){  
  14.                 psw=cookies[i].getValue();  
  15.                 request.setAttribute(“psw”,psw);  
  16.             }  
  17.         }  
  18.     }  
  19. %>  

 

3.其次,在登陆到后台验证完毕密码后面加入

[java] 
view plain
 copy

 

  1. //处理Cookie  
  2. addCookie(username , pwd ,response ,request);  

下面是addCookie这个方法

 

[java] 
view plain
 copy

 

  1. /**Cookie的实现     
  2.      * @throws UnsupportedEncodingException **/  
  3.     private void addCookie(String name, String password,HttpServletResponse response, HttpServletRequest request) throws UnsupportedEncodingException  {  
  4.         if(StringUtils.isNotBlank(name)&&StringUtils.isNotBlank(password)){  
  5.             //创建Cookie  
  6. //          Cookie nameCookie=new Cookie(“name”,URLEncoder.encode(name,”utf-8″));  
  7.             Cookie nameCookie=new Cookie(“name”,name);  
  8.             Cookie pswCookie=new Cookie(“psw”,password);  
  9.               
  10.             //设置Cookie的父路径  
  11.             nameCookie.setPath(request.getContextPath()+“/”);  
  12.             pswCookie.setPath(request.getContextPath()+“/”);  
  13.               
  14.             //获取是否保存Cookie  
  15.             String rememberMe=request.getParameter(“rememberMe”);  
  16.             if(rememberMe==null){
    //不保存Cookie  
  17.                 nameCookie.setMaxAge(0);  
  18.                 pswCookie.setMaxAge(0);  
  19.             }else{
    //保存Cookie的时间长度,单位为秒  
  20.                 nameCookie.setMaxAge(7*24*60*60);  
  21.                 pswCookie.setMaxAge(7*24*60*60);  
  22.             }  
  23.             //加入Cookie到响应头  
  24.             response.addCookie(nameCookie);  
  25.             response.addCookie(pswCookie);  
  26.         }  
  27.     }  
  28. }  

    1.首先是用户名,密码的input 和保存状态的checkbox

    [html] 
    view plain
     copy

     

    1. <input class=“ipt” type=“text” name=‘username’ value=‘${name}’/>  
    2. <input class=“ipt” type=‘password’ name=‘password’ id=‘password’ />  
    3. <input style=” margin-left:60px; margin-right:10px; ” type=“checkbox” name=“rememberMe” id=“rememberMe” />  

     

    没找到怎么保存checkbox的状态,我就自己写了个

     

    [html] 
    view plain
     copy

     

    1. <script>  
    2.     window.onload = function() {  
    3.         if (‘${name}’ != ”) {  
    4.             document.getElementById(‘rememberMe’).checked = true;  
    5.         } else {  
    6.             document.getElementById(‘rememberMe’).checked = false;  
    7.         }  
    8.     }  
    9. </script>  

     

    2.然后在jsp顶部加入java代码,用于读取cookie

    [html] 
    view plain
     copy

     

    1. <%  
    2.     String name = “”;  
    3.     String psw = “”;  
    4.     String checked = “”;  
    5.     Cookie[] cookies = request.getCookies();  
    6.     if(cookies != null && cookies.length>0){  
    7.         for(int i =0; i<cookies.length; i++){  
    8.             if(cookies[i].getName().equals(“name”)){  
    9.                 name=cookies[i].getValue();  
    10.                 request.setAttribute(“name”,name);  
    11.             }  
    12.                   
    13.             if(cookies[i].getName().equals(“psw”)){  
    14.                 psw=cookies[i].getValue();  
    15.                 request.setAttribute(“psw”,psw);  
    16.             }  
    17.         }  
    18.     }  
    19. %>  

     

    3.其次,在登陆到后台验证完毕密码后面加入

    [java] 
    view plain
     copy

     

    1. //处理Cookie  
    2. addCookie(username , pwd ,response ,request);  

    下面是addCookie这个方法

     

    [java] 
    view plain
     copy

     

    1. /**Cookie的实现     
    2.      * @throws UnsupportedEncodingException **/  
    3.     private void addCookie(String name, String password,HttpServletResponse response, HttpServletRequest request) throws UnsupportedEncodingException  {  
    4.         if(StringUtils.isNotBlank(name)&&StringUtils.isNotBlank(password)){  
    5.             //创建Cookie  
    6. //          Cookie nameCookie=new Cookie(“name”,URLEncoder.encode(name,”utf-8″));  
    7.             Cookie nameCookie=new Cookie(“name”,name);  
    8.             Cookie pswCookie=new Cookie(“psw”,password);  
    9.               
    10.             //设置Cookie的父路径  
    11.             nameCookie.setPath(request.getContextPath()+“/”);  
    12.             pswCookie.setPath(request.getContextPath()+“/”);  
    13.               
    14.             //获取是否保存Cookie  
    15.             String rememberMe=request.getParameter(“rememberMe”);  
    16.             if(rememberMe==null){
      //不保存Cookie  
    17.                 nameCookie.setMaxAge(0);  
    18.                 pswCookie.setMaxAge(0);  
    19.             }else{
      //保存Cookie的时间长度,单位为秒  
    20.                 nameCookie.setMaxAge(7*24*60*60);  
    21.                 pswCookie.setMaxAge(7*24*60*60);  
    22.             }  
    23.             //加入Cookie到响应头  
    24.             response.addCookie(nameCookie);  
    25.             response.addCookie(pswCookie);  
    26.         }  
    27.     }  
    28. }  
    29. 这是我借鉴CSDN一位前辈的

转载于:https://www.cnblogs.com/110lsm/p/8624840.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/107625.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • BufferedWriter详解[通俗易懂]

    BufferedWriter详解[通俗易懂]字符缓冲流缓冲流:BufferedWriter高效读写支持输入换行符可以一次写一行,一次读一行。案例/**BufferedWriter*使用字符缓冲流写入文件**/publicclassTestBufferedWriter{publicstaticvoidmain(String[]args)throwsException{//1.创建一个缓冲流FileWriterfw=newFileWriter(

  • #WPF#Dirkster.AvalonDock教程

    #WPF#Dirkster.AvalonDock教程https://blog.csdn.net/youyomei/article/details/103107304教程还不错,但是存在一个错误xmlns:avalon=”http://schemas.xceed.com/wpf/xaml/avalondock”改成如下xmlns:avalon=”https://github.com/Dirkster99/AvalonDock”

  • Modbus测试工具ModbusPoll与Modbus Slave使用方法「建议收藏」

    Modbus测试工具ModbusPoll与Modbus Slave使用方法「建议收藏」Modbus测试工具ModbusPoll与ModbusSlave使用方法

  • js 刷新当前页面

    js 刷新当前页面方法1:reload()方法reload()方法用于刷新当前文档。reload()方法类似于你浏览器上的刷新页面按钮。location.reload();方法2:replace()方法replace()方法可用一个新文档取代当前文档。<!DOCTYPEhtml><html><head><metacharset=”utf-8″><title>菜鸟教程(runoob.com)</title><sc

  • vue3.0计算属性_vue计算属性什么时候执行

    vue3.0计算属性_vue计算属性什么时候执行前言一般情况下属性都是放到data中的,但是有些属性可能是需要经过一些逻辑计算后才能得出来,那么我们可以把这类属性变成计算属性。比如以下:<divid="example&quot

  • wine卡住_Ubuntu微信

    wine卡住_Ubuntu微信UbuntuwineQQ卡死前几天在Ubuntu下写基因组信息学实验报告用wps-linux转pdf遇到了字体问题,就把windows字体拷过来安装了然后再用QQ就出现一堆口口口口。。。但是这个不影响使用影响使用的是他会卡死。。原因字体缓存没更新解决方案删除windows字体嫌麻烦我就没删。。或者可以:重建缓存cd/usr/share/fontssudofc-cache-fv应该解决了。后续好像还是会卡想到上次安装字体的时候有一堆报错部分截图

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号