创建和获取cookie
创建和获取cookie
制作人:全心全意
cookie:在互联网中,cookie是小段的文本信息,在网络服务器上生成,并发送给浏览器。通过使用cookie可以标识用户身份,记录用户名和密码,跟踪重复用户等。浏览器将cookie以key/value的形式保存到客户机某个指定目录中。
getCookies():获取所有cookie对象的集合
getName():获取指定名称的cookie
getValue():获取cookie对象的值
getCookies():获取所有cookie对象的集合
getName():获取指定名称的cookie
getValue():获取cookie对象的值
测试页面存入和获取cookie页面
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ page import="java.net.URLDecoder" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>通过cookie保存并读取用户登录信息</title> </head> <body> <% Cookie[] cookies = request.getCookies(); String user = ""; String date = ""; if(cookies != null){ for(int i =0;i<cookies.length;i++){ if(cookies[i].getName().equals("mrCookie")){ user = URLDecoder.decode(cookies[i].getValue().split("#")[0]); date = cookies[i].getValue().split("#")[1]; } } } if( "".equals(user) && "".equals(date) ){ %> 游客您好,欢迎您初次光临! <form action="index1.jsp" method="post"> 请输入姓名:<input name="user" type="text" value=""> <input type="submit" value="确定"> </form> <% }else{ %> 欢迎[<b><%=user %></b>]再次光临<br> 您注册的时间是:<%=date %> <% } %> </body> </html>
创建cookies页面
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ page import="java.net.URLEncoder" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>写入cookie</title> </head> <body> <% String user = URLEncoder.encode(new String(request.getParameter("user").getBytes("ISO-8859-1"),"UTF-8")); Cookie cookie = new Cookie("mrCookie",user+"#"+new java.util.Date().toLocaleString()); cookie.setMaxAge(5); response.addCookie(cookie); %> <%=user %> <script type="text/javascript">window.location.href="index.jsp"</script> </body> </html>
小技巧:在向cookie中保存的信息中,如果包括中文,则需要调用java.net.URLEncoder类的encode()方法将要保存到cookie中的信息进行编码;在读取cookie的内容时,还需要应用java.netURLDecoder类的decode()方法进行解码。这样,就可以成功地向cookie中写入中文信息。