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

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


慕码人8056858
浏览 547回答 2
2回答

慕的地8271018

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);}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Ruby