为了账号安全,请及时绑定邮箱和手机立即绑定

怎样更改浏览器的cookie保存时间

怎样更改浏览器的cookie保存时间

慕码人8056858 2019-05-16 10:10:35
怎样更改浏览器的cookie保存时间
查看完整描述

2 回答

?
慕的地8271018

TA贡献1796条经验 获得超4个赞

int maxAge = 365*24*3600;//cookie的存活期
CookieUtils.addCookie("name",value,response,maxAge,request.getContextPath());

public static void addCookie(String name, String value, HttpServletResponse response, int maxAge, String path) throws Exception {
String str = URLEncoder.encode(value, "UTF-8");
Cookie cookie = new Cookie(name, str);
cookie.setPath(path);
cookie.setMaxAge(maxAge);
response.addCookie(cookie);
}





查看完整回答
反对 回复 2019-05-17
  • 2 回答
  • 0 关注
  • 546 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信