怎样更改浏览器的cookie保存时间
3个回答
展开全部
Cookie的保留时间主要由两个方面决定。
浏览器的设定,打开浏览器的Internet设置,第一个页签下有浏览历史记录,点击下方的设定按钮,新开页面中点击第二个的历史记录页签,可以设置天数,就是网页浏览记录、Cookie等的保存天数。
由所访问的网页决定,有些使用Cookie的网页会有一个默认使用Cookie的天数,不同网页该默认天数可不同。
浏览器的Cookie保留时间设定优先于所访问网页的设定。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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);
}
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);
}
追问
能用中文详细的说下么
追答
上面是代码,你不是要写代码吗?你是想在浏览器上设置存活期吗,这个应该不可以,据我所知是由代码决定的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询