Cookie(쿠키) 삭제하기

By | 8월 6, 2008

# 검색하여 같은 이름의 쿠키가 있으면, 같은 이름의 쿠키를 하나 더 생성하여 setMaxAge(0) 으로
   응답에 실어 보낸다.

Cookie[] cookies = request.getCookies();
    if (cookies != null && cookies.length > 0) {
        for (int i = 0 ; i < cookies.length ; i++) {
            if (cookies[i].getName().equals("name")) {
                Cookie cookie = new Cookie("name", "");
               
cookie.setMaxAge(0);
                response.addCookie(cookie);
            }
        }
   }

- 출처 : http://tong.nate.com/angelearth/25672997 -

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments