处理Cookie : 曲奇 « JSP技术 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » JSP技术 » 曲奇屏幕截图 
处理Cookie

// cookieReader.jsp
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<body>
<c:choose>
  <c:when test="${empty cookie}" >
  <h2>We did not find any cookies in the request</h2>
  </c:when>
  <c:otherwise>
<h2>The name and value of each found cookie</h2>
<c:forEach var="cookieVal" items="${cookie}">
<strong>Cookie name:</strong> <c:out value="${cookieVal.key}" /><br>
<strong>Cookie value:</strong> <c:out value="${cookieVal.value.value}" /><br><br>
</c:forEach>
</c:otherwise>
</c:choose>

</body>
</html>


// cookieSetter.jsp
<jsp:useBean id="cookieBean" class="com.java2s.CookieBean" />
<jsp:setProperty name="cookieBean" property="name"  value="bakedcookie" />
<jsp:setProperty name="cookieBean" property="maxAge"  value="<%=(365*24*60*60) %>" />
<jsp:setProperty name="cookieBean" property="path"  value="<%= request.getContextPath() %>" />
<jsp:setProperty name="cookieBean" property="cookieHeader"  value="<%= response %>" />
<html>
<head><title>Cookie Maker</title></head>
<body>
<h2>Here is information about the new cookie</h2>
Name: <jsp:getProperty name="cookieBean" property="name" /><br>
Value: <jsp:getProperty name="cookieBean" property="value" /><br>
Path: <jsp:getProperty name="cookieBean" property="path" />
</body>
</html>

// put the class file to WEB-INF/classes/com/java2s
//CookieBean.java
package com.java2s;

import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletResponse;

public class CookieBean {

  private Cookie cookie = null;

  public CookieBean() {
  }

  public void setName(String name) {

    if (name == null || (name.equals("")))
      throw new IllegalArgumentException("Invalid cookie name set in: "
          + getClass().getName());

    cookie = new Cookie(name, "" new java.util.Date().getTime());
  }

  public void setValue(String value) {

    if (value == null || (value.equals("")))
      throw new IllegalArgumentException("Invalid cookie value set in: "
          + getClass().getName());

    if (cookie != null)
      cookie.setValue(value);

  }

  public void setMaxAge(int maxAge) {

    if (cookie != null)
      cookie.setMaxAge(maxAge);

  }

  public void setPath(String path) {

    if (path == null || (path.equals("")))
      throw new IllegalArgumentException("Invalid cookie path set in: "
          + getClass().getName());

    if (cookie != null)
      cookie.setPath(path);
  }

  public void setCookieHeader(HttpServletResponse response) {

    if (response == null)
      throw new IllegalArgumentException(
          "Invalid HttpServletResponse set in: "
              + getClass().getName());
    if (cookie != null)
      response.addCookie(cookie);
  }

  public String getName() {

    if (cookie != null)
      return cookie.getName();
    else
      return "unavailable";

  }

  public String getValue() {

    if (cookie != null)
      return cookie.getValue();
    else
      return "unavailable";

  }

  public String getPath() {

    if (cookie != null)
      return cookie.getPath();
    else
      return "unavailable";

  }




           
       
Related examples in the same category
1. JSP的创建和列表Cookie
2. JSP中列出全部的Cookie
3. 设置cookie
4. 设置和读取Cookie
5. 在JSP页面显示Cookie
6. JSP技术:Cookie处理
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.