首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

httpclient重定向Cookie设立

2012-09-24 
httpclient重定向Cookie设置HttpClient client new HttpClient()GetMethod methodget new GetMethod(

httpclient重定向Cookie设置

HttpClient client = new HttpClient();GetMethod methodget = new GetMethod("xxxxx");methodget.setFollowRedirects(true);methodget.getParams().setParameter(HttpMethodParams.SINGLE_COOKIE_HEADER, true);client.executeMethod(methodget);

?

热点排行