利用cookie实现记住密码功能

登陆界面:login.jsp

form表单

<form action="dologin.jsp" method="post" >

用户名:<input type="text" name="uname"/>

<br/>

密码:<input type="password" name="upwd" />

<br/>

记住密码:

<input type="checkbox" name="checkpwd" value="1"/>记住密码

<br/>

<input type="submit" value="登录"/>

</form>

在 dologin.jsp 中接收并处理提交的数据:

java 复制代码
<%@page import="com.hz.dao.impl.UserDaoImpl"%>
<%@page import="com.hz.dao.UserDao"%>
<%@page import="com.hz.pojo.User"%>
<%@page import="java.util.Arrays"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dologin.jsp页面处理</title>
</head>
<body>
	<%
		//post之中文乱码
		request.setCharacterEncoding("utf-8");

		String uname = request.getParameter("uname");
		String upwd = request.getParameter("upwd");

		//是否记住密码
		String checkpwd = request.getParameter("checkpwd");

		//调用dao方法
		UserDao userDao = new UserDaoImpl();
		User user = userDao.loginUser(uname, upwd);
		//5s清除会话
		//session.setMaxInactiveInterval(5);
		//逻辑判断是否成功	
		if (user != null) {

			//添加自定义属性
			session.setAttribute("user", user);
			//设置session非活动时间          单位秒        60
			session.setMaxInactiveInterval(10); 
			
			if("1".equals(checkpwd)){
				//存cookie
				Cookie cookieuname = new Cookie("uname",user.getUserCode());
	
				cookieuname.setPath("/");//设置路径
				cookieuname.setMaxAge(60*60);
				//将cookie放入response对象
			
				//存cookie
				Cookie cookieupwd = new Cookie("upwd",user.getUserPassword());
	
				cookieuname.setPath("/");//设置路径
				cookieuname.setMaxAge(60*60);
				//将cookie放入response对象
				response.addCookie(cookieuname);
				response.addCookie(cookieupwd);
				
			}
			
			
			response.sendRedirect(request.getContextPath() +"/index.jsp");
			
			

		} else {
			//失败,跳转登录页面
			//重定向
			response.sendRedirect(request.getContextPath() + "/login.jsp");
			//request.getRequestDispatcher("login.jsp").forward(request, response);
		}
	%>
</body>
</html>

---------------------------------------------------------------------------------

在login.jsp页面实现接收已存的值

java 复制代码
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录</title>
</head>
<body>
	 <%
	 	String uname="";
	 	String upwd="";
	 	Cookie cookies[] = request.getCookies();
	 	if(cookies != null && cookies.length>0){
	 		
	 		for(Cookie ck:cookies){
	 			
	 			if(ck.getName().equals("uname")){
	 				uname = ck.getValue();
	 			}
	 			if(ck.getName().equals("upwd")){
	 				upwd = ck.getValue();
	 			}
	 			
	 		}
	 	
	 	}

	 %>
	 
	<form action="dologin.jsp" method="post" >
		用户名:<input type="text" name="uname" value="<%=uname %>" />
		<br/>
		密码:<input type="password" name="upwd" value=<%=upwd %>>
		<br/>
		记住密码:
		<input type="checkbox" name="checkpwd" value="1"/>记住密码
		<br/>
		<input type="submit" value="登录"/>
	</form>

</body>
</html>
相关推荐
前端小小王3 分钟前
React Hooks
前端·javascript·react.js
苹果醋38 分钟前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
迷途小码农零零发13 分钟前
react中使用ResizeObserver来观察元素的size变化
前端·javascript·react.js
Hello.Reader27 分钟前
深入解析 Apache APISIX
java·apache
娃哈哈哈哈呀35 分钟前
vue中的css深度选择器v-deep 配合!important
前端·css·vue.js
菠萝蚊鸭1 小时前
Dhatim FastExcel 读写 Excel 文件
java·excel·fastexcel
旭东怪1 小时前
EasyPoi 使用$fe:模板语法生成Word动态行
java·前端·word
007php0071 小时前
Go语言zero项目部署后启动失败问题分析与解决
java·服务器·网络·python·golang·php·ai编程
∝请叫*我简单先生1 小时前
java如何使用poi-tl在word模板里渲染多张图片
java·后端·poi-tl
ssr——ssss1 小时前
SSM-期末项目 - 基于SSM的宠物信息管理系统
java·ssm