删除cookie是没有delete方法。只有设置maxAge 为0 。
清除Cookie步骤
- 向原来的Cookie中传入空值
- 设置Cookie的生命周期为0(立即删除)
- 响应给客户端
1 Cookie cookie = new Cookie("history",""); 2 cookie.setMaxAge(0); //设置立即删除 3 cookie.setPath("/CookieDemo02"); 4 response.addCookie(cookie);
删除cookie是没有delete方法。只有设置maxAge 为0 。
1 Cookie cookie = new Cookie("history",""); 2 cookie.setMaxAge(0); //设置立即删除 3 cookie.setPath("/CookieDemo02"); 4 response.addCookie(cookie);
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。