标签:购物 char 删除 title request hid 客户 多个 for
1、Http协议与Cookie
浏览器大战:因为浏览器竞争激烈,所以很多浏览器都会在移动服务内违反HTTP规定,但也不会让一个Cookie为4GB。
2、Cookie的用途
3、JavaWeb中使用Cookie
案例:一个jsp保存cookie,a.jsp
另一个jsp获取浏览器归还的cookie,b.jsp
1 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 <html>
3 <head>
4 <title>Title</title>
5 </head>
6 <body>
7 <h1>保存Cookie</h1>
8 <%-- request、response、session、application、pageContext、config、out、page、exception--%>
9 <%
10 Cookie cookie1 = new Cookie("aaa","AAA");
11 response.addCookie(cookie1);
12 Cookie cookie2 = new Cookie("bbb","BBB");
13 response.addCookie(cookie2);
14 %>
15 </body>
16 </html>
1 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 <html>
3 <head>
4 <title>Title</title>
5 </head>
6 <body>
7 <h1>获取Cookie</h1>
8 <%
9 Cookie[] cookies = request.getCookies();
10 if(cookies!=null){
11 for(Cookie c : cookies) {
12 out.println(c.getName()+":"+c.getValue()+"<br/>);
13 }
14 }
15 %>
16 </body>
17 </html>
4、Cookie详解
标签:购物 char 删除 title request hid 客户 多个 for
原文地址:http://www.cnblogs.com/gdwkong/p/7623947.html