struts中Cookie实现记住密码

Posted 非非是

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts中Cookie实现记住密码相关的知识,希望对你有一定的参考价值。

HttpServletRequest request = ServletActionContext.getRequest();
	        Cookie[] cookies = request.getCookies();
		if(number.equals("")==false) {
			//创建Cookie
			 Cookie cookie = new Cookie("Number", number);
			 //设置Cookie的生命周期
			 cookie.setMaxAge(60*60*24*365);
			 ServletActionContext.getResponse().addCookie(cookie);
		}
		else if(cookies!=null){
			for(int i=0; i<cookies.length; i++) {
	        	if(cookies[i].getName().equals("Number"))
	        		number=cookies[i].getValue().toString();
	        }
		}
		if(password.equals("")==false) {
			//创建Cookie
			 Cookie cookie = new Cookie("Password", password);
			 //设置Cookie的生命周期
			 cookie.setMaxAge(60*60*24*365);
			 ServletActionContext.getResponse().addCookie(cookie);
		}
		else if(cookies!=null){
			for(int i=0; i<cookies.length; i++) {
	        	if(cookies[i].getName().equals("Password"))	
	        		password=cookies[i].getValue().toString();
	        }
		}

  

以上是关于struts中Cookie实现记住密码的主要内容,如果未能解决你的问题,请参考以下文章

Cookie实现记住密码代码

ssm实现记住账号密码(cookie)

jsp-4 用cookie实现记住密码

js实现cookie记住密码

js中利用cookie实现记住密码功能

使用cookie完成一个记住密码的功能