今天尝试使用hutool对自己的oss进行下载。
<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.11</version> </dependency>
package src.main.pavido; import cn.hutool.http.HttpUtil; import java.io.File; public class Test1 { public static void main(String[] args) { long l = HttpUtil.downloadFile("https://web-tel.o540986.png", new File("C:\\Usures\\爬取图片.png")); System.out.println(l); } }
标签:cn,22,指导,hutool,寒假,import,main,HttpUtil From: https://www.cnblogs.com/syhxx/p/17996948