maven依赖

<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>4.1.2</version>
</dependency>

测试

import cn.hutool.http.HttpUtil;

public class aa {
    public static void main(String[] args) {
        String url = "http://www.chengdu.gov.cn/chengdu/c105449f//2020-04/15/63c83141a30244e5b340265ecad395e7/files/c44606a20b694c22aa6ddf63530e863d.pdf";
        HttpUtil.downloadFile(url, "e:/abc/test02.pdf");
    }
}

 

 

【Java】文件下载/下载Excel/下载文件到本地

 

相关文章:

  • 2021-08-07
  • 2021-11-29
  • 2021-12-03
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-01
  • 2021-09-15
  • 2022-12-23
  • 2021-11-16
  • 2021-04-03
  • 2021-11-20
相关资源
相似解决方案