国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

jsp源碼實例5(cookie)

2024-09-05 00:18:01
字體:
來源:轉載
供稿:網友
package coreservlets;

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

/** Sets six cookies: three that apply only to the current
* session (regardless of how long that session lasts)
* and three that persist for an hour (regardless of
* whether the browser is restarted).
*


* Taken from Core Servlets and JavaServer Pages
* from Prentice Hall and Sun Microsystems Press,
* http://www.coreservlets.com/.
* ? 2000 Marty Hall; may be freely used or adapted.
*/

public class SetCookies extends HttpServlet {
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
for(int i=0; i// Default maxAge is -1, indicating cookie
// applies only to current browsing session.
Cookie cookie = new Cookie("Session-Cookie-" + i,
"Cookie-Value-S" + i);
response.addCookie(cookie);
cookie = new Cookie("Persistent-Cookie-" + i,
"Cookie-Value-P" + i);
// Cookie is valid for an hour, regardless of whether
// user quits browser, reboots computer, or whatever.
cookie.setMaxAge(3600);
response.addCookie(cookie);
}
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String title = "Setting Cookies";
out.println
(ServletUtilities.headWithTitle(title) +
"

/n" +
"

" + title + "

/n" +
"There are six cookies associated with this page./n" +
"To see them, visit the/n" +
"/n" +
"ShowCookies servlet./n" +
"

/n" +
"Three of the cookies are associated only with the/n" +
"current session, while three are persistent./n" +
"Quit the browser, restart, and return to the/n" +
"ShowCookies servlet to verify that/n" +
"the three long-lived ones persist across sessions./n" +
"

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大悟县| 德钦县| 桦川县| 金坛市| 灵台县| 阜阳市| 德钦县| 收藏| 湖南省| 北票市| 鄂尔多斯市| 家居| 维西| 岑巩县| 曲松县| 开封市| 青州市| 赞皇县| 册亨县| 梨树县| 米易县| 思茅市| 通渭县| 平原县| 宜宾县| 曲水县| 贵德县| 仁布县| 阿勒泰市| 武清区| 旅游| 梁河县| 十堰市| 句容市| 格尔木市| 专栏| 裕民县| 基隆市| 林甸县| 大悟县| 仙游县|