Cookie实现记住密码及解决中文乱码

一、login页面

1、说明

务必导入import="java.util.*,java.net.*"这两个包

java.net.*实现编码解码

 

2、截图

3、代码:

<%@page import="java.net.URLDecoder"%>
<%@ page language="java" import="java.util.*" pageEncoding="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 '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">
</head>

<body>
	<h1>用户信息</h1>
	<hr>
	<%
		request.setCharacterEncoding("utf-8");	//设置网页编码
		String username = "";
		String password = "";
		Cookie[] cookies = request.getCookies();	//获取cookie参数
		if(cookies != null && cookies.length > 0)	//判断是否有cookie
		{
			for(Cookie c:cookies)	//匹配cookie
			{
				if(c.getName().equals("username"))	//查找username的cookie
				{
					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>

二、dologin页面

1、说明

进行逻辑处理

2、截图

3、代码

<%@ page language="java" import="java.util.*,java.net.*" pageEncoding="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 '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">
	-->

  </head>
  
  <body>
    <h1>登录成功</h1>
    <hr>
    <br>
    <br>
    <br>
    <%
    	request.setCharacterEncoding("utf-8");
    	//首先判断用户是否选择了记住登录状态
    	String[] isUserCookies = request.getParameterValues("isUseCookie");
    	if(isUserCookies != null && isUserCookies.length > 0)
    	{
    		//把用户名和密码保存在Cookie对象里面
    		//使用URLEncoder解决cookie无法保存字符串问题
    		String username = URLEncoder.encode(request.getParameter("username"), "utf-8");
    		String password = URLEncoder.encode(request.getParameter("password"), "utf-8");

    		Cookie usernameCookie = new Cookie("username",username);
    		Cookie passwordCookie = new Cookie("password",password);
    		usernameCookie.setMaxAge(864000);	//设置最大生存期限为10天
    		passwordCookie.setMaxAge(864000);
    		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" target="_blank">查看用户信息</a>
  </body>
</html>

三、users页面

1、说明

代码引用部分同login页面

2、截图

3、代码

<%@page import="java.net.URLDecoder"%>
<%@ page language="java" import="java.util.*" pageEncoding="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 '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">
    -->

</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>

源码链接:https://download.csdn.net/download/qq_36117247/10971172

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值