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

首頁 > 編程 > JSP > 正文

jsp實現cookie的使用

2020-06-01 23:30:36
字體:
來源:轉載
供稿:網友

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). 
* <P> 
* 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<3; 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) + 
"<BODY BGCOLOR=/"#FDF5E6/">/n" + 
"<H1 ALIGN=/"CENTER/">" + title + "</H1>/n" + 
"There are six cookies associated with this page./n" + 
"To see them, visit the/n" + 
"<A HREF=/"/servlet/coreservlets.ShowCookies/">/n" + 
"<CODE>ShowCookies</CODE> servlet</A>./n" + 
"<P>/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" + 
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 堆龙德庆县| 修文县| 宝山区| 临夏市| 松原市| 石阡县| 台南市| 巴塘县| 咸宁市| 郎溪县| 凯里市| 仁怀市| 日土县| 凯里市| 佛坪县| 迁安市| 汤原县| 涡阳县| 罗山县| 商城县| 华安县| 宜宾县| 镇巴县| 横峰县| 阳谷县| 松桃| 牟定县| 太原市| 崇仁县| 玉树县| 汽车| 平远县| 乐清市| 阜城县| 张家川| 青冈县| 广东省| 德保县| 逊克县| 正定县| 聂荣县|