jspはクッキーの使用を実現します。


package corese vlets import java.io.*; import javax.servlet.*; import javax.servlet.http.*; /** セツ six cookies: three that appy only ト the current * セッション (regardless 保存先 ホ long that セッション lasts * and three that persist for an hour (regardless 保存先 * whether the browser is レジスタント * 

 * Taken from コア Servlets and JavaServer Pages * from プレス ホール and Sun Microsoft Press、 * http://www.coreservlets.com/. * © 2000 マーティ ホール may be freely アメリカ語 or adated. */ public クラス Set Cookies extens HttpServlet { public void ドGet(HttpServlet Request) request HttpServlet Resonse レスポンス) ローソン Servlet Exception、 IOException { for(int i=0; i<3; i++) { // Default maxAge is -1, indicating クッキー // appies only ト current browsing セッション Cookie クッキー = new Cookie(「Session-Cookie-」 + i, "Cookie-Value-S" + i) レスポンス.addCookie(cookie) クッキー = new Cookie(「Persistent Cookie-」 + i, "Cookie-Value-P" + i) // Cookie is valid for an hour regardless 保存先 whether // user quits browser rebook コンピュータ or whatever. cookie.setMaxAge(3600) レスポンス.addCookie(cookie) } レスポンス.set ContentType(「text/html」) PrintWriter out = レスポンス.getWriter() String title = "セッティング Cookies"; out.printl n (ServletUtilities.headWithTitle(title) + "“ + "The e e エリア six cookies assiociated with this page." + "To see them visit the" + "ShowCookies servlet"" + "

" + "Thre   the cookies エリア assiociated only with the" + "current セッション while three エリア persistent." + "Quit the browser retart and return ト the" + "ShowCookies servlet ト verify that" + "the three long-lived はい persist acros sessions." + ""); } }