紧接上一节,本节记录 【下载,以流的方式获取响应信息】
HttpClient可以让我们模拟浏览器进行访问各个网站,同时也具备访问网络上的某个资源,对其进行下载的功能。我们只需要把响应的信息以流的方式给保存到本地即可。
上代码:
@Test
public void getUriResource() {
String imgUrl = "https://ws3.sinaimg.cn/large/9150e4e5ly1fhnc60l3cdj204r04qaa4.jpg";
// 获取连接客户端工具
CloseableHttpClient httpClient = HttpClients.createDefault();
CloseableHttpResponse response = null;
try {
// 创建POST请求对象
HttpPost httpPost = new HttpPost(imgUrl);
/*
* 添加请求参数
*/
// 创建请求参数
List list = new LinkedList<>();
BasicNameValuePair param1 = new BasicNameValuePair("name", "root");
BasicNameValuePair param2 = new BasicNameValuePair("password", "123456");
list.add(param1);
list.add(param2);
// 使用URL实体转换工具
UrlEncodedFormEntity entityParam = new UrlEncodedFormEntity(list);
httpPost.setEntity(entityParam);
/*
* 添加请求头信息
*/
// 浏览器表示
httpPost.addHeader("User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6)");
// 传输的类型
httpPost.addHeader("Content-Type", "application/x-www-form-urlencoded");
// 执行请求
response = httpClient.execute(httpPost);
// 获得响应的实体对象
HttpEntity entity = response.getEntity();
/*
* 获取到响应信息的流
*/
InputStream is = entity.getContent();
// 包装成高效流
BufferedInputStream bis = new BufferedInputStream(is);
// 写入本地 D 盘
File file = new File("D:/图.jpg");
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
byte[] byt = new byte[1024 * 8];
Integer len = -1;
while ((len = bis.read(byt)) != -1) {
bos.write(byt, 0, len);
}
bos.close();
bis.close();
} catch (ClientProtocolException e) {
System.err.println("Http协议出现问题");
e.printStackTrace();
} catch (ParseException e) {
System.err.println("解析错误");
e.printStackTrace();
} catch (IOException e) {
System.err.println("IO异常");
e.printStackTrace();
} finally {
// 释放连接
if (null != response) {
try {
response.close();
httpClient.close();
} catch (IOException e) {
System.err.println("释放连接出错");
e.printStackTrace();
}
}
}
}
获取到的图片:
图
本节完毕,下一节记录【连接超时的配置】