cookie设置

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

你可能感兴趣的:(cookie)