原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处
还是登陆网站的例子,有很多网站的登录界面会有个记住账号密码的选项,甚至是有些浏览器比如firfox,会在我们点击登录按钮之后会弹出一个选项提示我们记住账号密码。那么这个记住的账号密码是放在什么地方呢?对,就是放在今天我们要讲的cookie里面。上章我们讲到的session其实是前端和服务器之间的一个会话,这个会话主要是保存在服务端,那么今天要讲的cookie,其实也是一个会话,是保存在客户端(浏览器上)的会话。那么同样都是会话,cookie和session有什么区别呢?
下面来写一个保存用户名密码的小demo:
servlet:
public class CookieServlet extends HttpServlet {
private static final long serialVersionUID = -271571469551304432L;
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html");
String uname = request.getParameter("uname");
String password = request.getParameter("password");
String ck = request.getParameter("ck");
// 被选中的状态是on 没有被选中的状态下是null
if ("on".equals(ck)) {
// 构造Cookie对象
// 添加到Cookie中
Cookie c = new Cookie("users", uname + "-" + password);
// 设置过期时间
c.setMaxAge(600);
// 存储
response.addCookie(c);
}
}
}
jsp:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%
//el表达式
String names="";
String pwd="";
//取出Cookie
Cookie [] c=request.getCookies();
for(int i=0;i<c.length;i++){
if(c[i].getName().equals("users")){
//存着数据(用户名+密码)
names=c[i].getValue().split("-")[0];
pwd=c[i].getValue().split("-")[1];
//再一次的存起来(备用)
request.setAttribute("xingming",names);
request.setAttribute("mima", pwd);
}
}
%>
<!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>
<form action="cookie" method="post">
用户名:<input type="text" name="uname" id="uname" value="${xingming}"/><br>
密码:<input type="password" name="password" id="password" value="${mima }"/><br>
<input type="checkbox" name="ck">记住用户名和密码<br>
<input type="submit" value="登录">
</form>
</body>
</html>
这样写出来的一个项目,当我们点记住密码然后登陆之后,进去了一个空白页,
,
然而我们用同一个浏览器在去进入登陆页面时,你会发现账号密码被记住了:
源码下载地址:
http://pan.baidu.com/s/1o8z64GU
鸣谢:又偷了点懒,文中源码均由借(chao)鉴(xi)自http://www.cnblogs.com/thrilling/p/4924077.html