1.根据网上的办法设置cookie
if (httpGet.getFirstHeader(“Set-Cookie”) != null) {
String cookie = httpGet.getFirstHeader(“Set-Cookie”).getValue();
httpGet.addHeader(“cookie”, cookie);
}
并没有什么用
2.再三查找,可能是默认的httprequest 的cookie策略与服务器不匹配,修改cookie策略
// 设置http请求时,修改默认的cookie策略,消除警告
RequestConfig defaultConfig = RequestConfig.custom().setCookieSpec(CookieSpecs.STANDARD).build(); httpGet.setConfig(defaultConfig);
参考博客
https://blog.csdn.net/baidu_23966735/article/details/51322098