当请求响应内容特别大的时候,发现Http post2 方法 请求获取不到数据。
5 回复
Response resp = Http.post2("http://weibo.com/kuyunhudong",null,10000);
System.out.println(resp.getContent());
System.out.println(resp.getStatus());
post? 你确定这个页面能POST?? 我这里显示302哦
@Test
public void test_weibo_post() {
Response resp = Http.post2("http://weibo.com/kuyunhudong",new HashMap<String, Object>(),10000);
System.out.println(resp.getStatus());
System.out.println(resp.getContent());
System.out.println(resp.getStatus());
}
302的情况下, 当然是没有content的啊
添加回复
请先登陆