请求获取网页的response,获取网页的html 怎么那么慢
HttpEntity multipart = builder.build();httppost.setEntity(multipart);
long start = System.currentTimeMillis();
// 发送请求
response = httpclient.execute(httppost);
long end = System.currentTimeMillis();
System.out.println("查询upsfreight消耗的时间是(毫秒):" + (end - start));
start = System.currentTimeMillis();
HttpEntity entity = response.getEntity();
String html = EntityUtils.toString(entity, "utf-8");
end = System.currentTimeMillis();
System.out.println("转换时间:" + (end - start));
String html = EntityUtils.toString(entity, "utf-8");
这一行代码要执行很久 4-9s,我有什么办法把他加快吗
回答
所以EntityUtils的这个方法的逻辑是什么呢。。。
以上是 请求获取网页的response,获取网页的html 怎么那么慢 的全部内容, 来源链接: utcz.com/a/38759.html