欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

cookie设置

程序员文章站 2022-05-24 14:35:33
...
		Cookie[] allCookies=request.getCookies();   
boolean exists=false;
//如果allCookies不为空......
if(allCookies!=null){
for(int i=0;i<allCookies.length;i++){
Cookie temp=allCookies[i];
if(temp.getName().equals("resid")){
//得到Cookie的值
String val=temp.getValue();
if(val.equals(resid)){
exists=true;
}
break;
}
}
}
if(!exists){
Cookie myCookie=new Cookie("resid",resid);
myCookie.setMaxAge(1*60*60); //设置cookie的失效时间
response.addCookie(myCookie);
}