1 / 2
文档名称:

jsp源码实例4(cookie)(1).txt

格式:txt   页数:2
下载后只包含 1 个 TXT 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

jsp源码实例4(cookie)(1).txt

上传人:管理资源吧 2011/9/11 文件大小:0 KB

下载得到文件列表

jsp源码实例4(cookie)(1).txt

文档介绍

文档介绍:×÷Õߣºblackwhites
ÈÕÆÚ£º2000-9-30 10:11:45
package coreservlets;
import .*;
import .*;
import .*;
/** 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,
/.
© 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);
(cookie);
cookie = new Cookie("Persistent-Cookie-" + i,
"Cookie-Value-P" + i);
// Cookie is valid for an hour, regardless of whether
// user quits browser, puter, or whatever.
(3600);
(cookie);
}
("text/html");
PrintWriter out = ();
String title = "Setting Cookies";

((title) +
"<BODY BGCOLOR=\