Mega Code Archive

 
Categories / Java Tutorial / JSP
 

Setting and Reading Cookies

< HTML>     <HEAD>         <TITLE>Setting and Reading Cookies</TITLE>     </HEAD>       <BODY         <%         Cookie c = new Cookie("message", "Hello!");         c.setMaxAge(24 * 60 * 60);         response.addCookie(c);          %>                       <%         Cookie[] cookies = request.getCookies();         boolean foundCookie = false;         for(int i = 0; i < cookies.length; i++) {              Cookie cookie1 = cookies[i];             if (cookie1.getName().equals("color")) {                 out.println("bgcolor = " + cookie1.getValue());                 foundCookie = true;             }         }           if (!foundCookie) {             Cookie cookie1 = new Cookie("color", "cyan");             cookie1.setMaxAge(24*60*60);             response.addCookie(cookie1);          }         %>          >         <H1>Setting and Reading Cookies</H1>         This page will set its background color using a cookie after refreshing.     </BODY> </HTML>