使用httpclient下载远程文件

有些时候我们需要使用httclient直接从网络获取一个文件
httpclient底层获取文件的方式仍然是封装的流,但是使用起来会比较方便,可以设置代理等web设施
示例代码如下

CloseableHttpClient client = HttpClients.createDefault();
RequestConfig config = null;
//使用代理

if(null != proxy && StringUtils.isNotBlank(proxy.ip) && proxy.port > 0){
    HttpHost proxy = new HttpHost(proxy.ip, proxy.port);  
    config = RequestConfig.custom().setProxy(proxy).build(); 
}else{
//没有代理,使用默认值
    config = RequestConfig.custom().build();
}
//目标文件url
HttpGet httpGet = new HttpGet(url);
httpGet.setConfig(config);
//下载需登陆,设置登陆后的cookie
httpGet.addHeader("Cookie", cookie);

try {
    HttpResponse respone = client.execute(httpGet);
    if(respone.getStatusLine().getStatusCode() != HttpStatus.SC_OK){
        return ;
    }
    HttpEntity entity = respone.getEntity();
    if(entity != null) {
        InputStream is = entity.getContent();
        File file = new File("目标文件生成路径");
        FileOutputStream fos = new FileOutputStream(file); 
        byte[] buffer = new byte[4096];
        int len = -1;
        while((len = is.read(buffer) )!= -1){
            fos.write(buffer, 0, len);
        }
        fos.close();
        is.close();
        files.add(file);
    }
} catch (Exception e) {
    
}finally{
    try {
        client.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

 

转载于:https://www.cnblogs.com/swbzmx/p/5604360.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值