首页 > 编程 > JSP > 正文

JSP中Cookie的处理

2019-11-18 16:07:19
字体:
来源:转载
供稿:网友
<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>

(出处:http://www.VeVb.com)



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表