java删除cookie的方式有哪些

757
2023/10/3 7:30:20
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Java中删除cookie,有以下几种方式:

  1. 使用response对象的addCookie()方法,将要删除的cookie的值设置为空,将其过期时间设置为0,然后再将该cookie添加到response中。例如:
Cookie cookie = new Cookie("cookieName", "");
cookie.setMaxAge(0);
response.addCookie(cookie);
  1. 使用response对象的addCookie()方法,将要删除的cookie设置为null,然后再将该cookie添加到response中。例如:
Cookie cookie = null;
cookie = new Cookie("cookieName", null);
cookie.setMaxAge(0);
response.addCookie(cookie);
  1. 使用response对象的getCookies()方法获取到所有的cookie,然后遍历cookie并将其过期时间设置为0。例如:
Cookie[] cookies = request.getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
cookie.setMaxAge(0);
response.addCookie(cookie);
}
}
  1. 使用response对象的setMaxAge()方法将所有的cookie的过期时间设置为0。例如:
Cookie[] cookies = request.getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
cookie.setMaxAge(0);
}
}

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: java的NumberFormat和DecimalFormat怎么使用