java删除cookie的方式有哪些

avatar
作者
筋斗云
阅读量:1

在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); } } 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!