java中如何获取cookie对象中的值
privatestaticfinalStringZSESSION_COOKIE="zsessionid";privatestaticfinalStringZSESSION...
private static final String ZSESSION_COOKIE = "zsessionid";
private static final String ZSESSION_VALUE = "sfdsbce94-94530-56e6-a0342-0393434sfwe4";
Cookie c = new Cookie(ZSESSION_COOKIE,ZSESSION_VALUE);
c.setSecure(true);
c.setMaxAge(60);
我想要读取出c这个cookie要如何读取?谢谢
我尝试使用这种方式去读取是不行:
for(Cookie c1 : c){
c1.getName();// get the cookie name
c1.getValue(); // get the cookie value
} 展开
private static final String ZSESSION_VALUE = "sfdsbce94-94530-56e6-a0342-0393434sfwe4";
Cookie c = new Cookie(ZSESSION_COOKIE,ZSESSION_VALUE);
c.setSecure(true);
c.setMaxAge(60);
我想要读取出c这个cookie要如何读取?谢谢
我尝试使用这种方式去读取是不行:
for(Cookie c1 : c){
c1.getName();// get the cookie name
c1.getValue(); // get the cookie value
} 展开
1个回答
展开全部
// 获取request里面的cookie cookie里面存值方式也是 键值对的方式
Cookie[] cookie = request.getCookies();
for (int i = 0; i < cookie.length; i++) {
Cookie cook = cookie[i];
if(cook.getName().equalsIgnoreCase("eredg4.login.account")){ //获取键
System.out.println("account:"+cook.getValue().toString()); //获取值
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询