JSP中Cookie的处理

减小字体 增大字体 作者:佚名  来源:不详
<HTML>
    <HEAD>
        <TITLE>Setting and Reading Cookies</TITLE>
    </HEAD>
    <BODY
        <%
        Cookie[] cookies = request.getCookies();
        boolean foundCookie = false;

        for(int i = 0; i < cookies.length; i++) { 
            Cookie c = cookies[i];
            if (c.getName().equals("color")) {
                out.println("bgcolor = " + c.getValue());
                foundCookie = true;
            }
        }  

        if (!foundCookie) {
            Cookie c = new Cookie("color", "cyan");
            c.setMaxAge(24*60*60);
            response.addCookie(c); 
        }
        %> 
        >
        <H1>Setting and Reading Cookies</H1>
        This page will set its background color using a cookie.
    </BODY>
</HTML>