JSP Java Tutorial

< HTML>
    
        Setting and Reading Cookies
    
 
            <%
        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); 
        }
        %> 
        >
        

Setting and Reading Cookies


        This page will set its background color using a cookie after refreshing.