<!-- Generated by javadoc (build 1.5.0_06) on Sun Apr 23 01:46:22 PDT 2006 -->
<noscript></noscript>
setMaxAge
public void setMaxAge
(int expiry)
Sets the maximum age of the cookie in seconds.
A positive value indicates that the cookie will expire after that many
seconds have passed. Note that the value is the maximum
age when the
cookie will expire, not the cookie's current age.
A negative value means that the cookie is not stored persistently and will be
deleted when the Web browser exits. A zero value causes the cookie to be
deleted.
Parameters:
expiry
- an integer specifying the maximum age of the cookie in
seconds
; if negative, means the cookie is not stored; if zero, deletes the
cookie
See Also:
getMaxAge()
很明显括号的表达式表示秒,负数不保存,零清除cookie
分享到:
相关推荐
### JSP与Servlet复习知识点详解 #### 一、JSP与Servlet基础知识 **1. JSP简介** - **定义**: Java Server Pages (JSP) 是一种基于Java技术的服务器端脚本语言,用于创建动态网页。 - **特点**: JSP页面可以将...
Java Servlet API说明文档 绪言 这是一份关于2.1版JavaServletAPI的说明文档,作为对这本文档的补充,你可以到http://java.sun.com/products/servlet/index.html下面下载Javadoc格式的文档。 谁需要读这份文档 这份...
package com.bjsxt.servlet; ... ... ... import javax.servlet.RequestDispatcher;...import javax.servlet.... response.sendRedirect("../admin/success.jsp"); }else{ //失败跳转回登录页面 //out.println("登录失败"); ...
总结,这个学习任务涵盖了JSP的基本元素、处理表单数据、Cookie的使用、Web应用配置以及Servlet上下文对象的应用。这些知识点是构建动态Web应用的基础,理解并掌握它们对于成为一名合格的Java Web开发者至关重要。
【JSP基础速成精华讲解】中,我们主要探讨了两个关键点:Servlet的三个要素以及四种会话跟踪方式。让我们深入了解一下这些概念。 首先,Servlet是Java Web开发中的核心组件,它负责处理HTTP请求并生成响应。Servlet...
<url-pattern>/jspServlet</url-pattern> </servlet-mapping> ``` 2. **处理HTTP请求**: - `HttpServletRequest`对象提供了多种方法来获取客户端发送的数据,如`getParameter()`用于获取表单参数。 - `...
1. **Cookie的创建与设置:** 在JSP中,我们可以使用`javax.servlet.http.Cookie`类来创建和设置Cookie。例如,创建一个名为`username`的Cookie,值为`John`: ```java Cookie cookie = new Cookie("username", ...
- **持久化 Cookie**:使用 `setMaxAge()` 方法设置 Cookie 的有效期。 #### 27. Session 的跟踪机制 Session 通过一个唯一的 session ID 来跟踪客户端的状态,该 ID 通常存储在 Cookie 中。 #### 28. 配置 ...
- 设置Cookie的有效时间(单位为秒):`cookie.setMaxAge(24 * 60 * 60);` - 添加Cookie到响应中:`response.addCookie(cookie);` - 获取Cookie数组:`Cookie[] cookies = request.getCookies();` - 遍历Cookie...
- Cookie的作用域:一个Servlet/JSP设置的Cookie能够被同一个路径下面或者子路径下面的Servlet/JSP读取。 - **Session**:更复杂的会话管理机制,用于跟踪用户在整个Web应用程序中的活动。通过`HttpSession`接口来...
- 通过`new Cookie()`创建一个新的Cookie对象,并通过`setMaxAge()`设置其有效期。然后使用`response.addCookie()`将其发送到客户端。 #### 四、页面间的数据传递 **页面间的数据传递**是Web开发中的一个重要环节...
本资源是 Java-Web 开发基础题库课后练习题答案章节测试题 1-7 章全的答案,涵盖了 Java Web 开发的基础知识点,包括 HTML、JSP、Servlet、Cookie 和 Session 等。 第 1 章 Java Web 开发基础习题答案: 1. JSP 中...
主要有四种方法:1.<%-- 与 --%>2.//3./与/4.<!--与--> 6. 在JSP中如何执行浏览重定向? 使用如下方式即可:response.sendRedirect("http://ybwen.home.chinaren.com/index.html");也能物理地改变HTTP HEADER属性...
要从客户端读取Cookie,我们可以在JSP的`<jsp:useBean>`或Servlet的`doGet()`或`doPost()`方法中检查Cookie是否存在,如下所示: ```jsp Cookie[] cookies = request.getCookies(); if (cookies != null) { for...
6. **销毁Cookie/Session**:调用`Cookie.setMaxAge(0)`或`HttpSession.invalidate()`来删除Cookie或结束Session。 在实际应用中,开发人员需要根据需求权衡使用Cookie还是Session。如果数据敏感或需要保护用户隐私...
面试中,JSP相关的题目主要考察开发者对JSP语法、内置对象、页面生命周期、以及与其他技术如Servlet、Cookies、Session的交互理解。以下是一些常见的JSP面试知识点: 1. **JSP与SSI(Server Side Includes)的混合...