@SneakyThrows
private void doDown(String url, String path) {
BufferedInputStream in = new BufferedInputStream(new URL(url).openStream());
File file = new File(path);
FileOutputStream out = new FileOutputStream(file);
IOUtils.copy(in, out);
in.close();
out.close();
}
本文由 Clive 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为:
2022/12/30 15:44