Java 从网上下载文件的几种方式实例代码详解
短信预约 -IT技能 免费直播动态提醒
废话不多说了,直接给大家贴代码了,具体代码如下所示;
package com.github.pandafang.tool;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.net.URL;import java.nio.channels.Channels;import java.nio.channels.FileChannel;import java.nio.channels.ReadableByteChannel;import java.nio.file.Files;import java.nio.file.Path;import java.nio.file.Paths;import java.nio.file.StandardCopyOption;import org.apache.commons.io.FileUtils;public class FileTool { public static void download(String url, String saveDir, String fileName) { BufferedOutputStream bos = null; InputStream is = null; try { byte[] buff = new byte[8192]; is = new URL(url).openStream(); File file = new File(saveDir, fileName); file.getParentFile().mkdirs(); bos = new BufferedOutputStream(new FileOutputStream(file)); int count = 0; while ( (count = is.read(buff)) != -1) { bos.write(buff, 0, count); } } catch (IOException e) { e.printStackTrace(); } finally { if (is != null) { try { is.close(); } catch (IOException e) { e.printStackTrace(); } } if (bos != null) { try { bos.close(); } catch (IOException e) { e.printStackTrace(); } } } } public static void downloadByApacheCommonIO(String url, String saveDir, String fileName) { try { FileUtils.copyURLToFile(new URL(url), new File(saveDir, fileName)); } catch (IOException e) { e.printStackTrace(); } } public static void downloadByNIO(String url, String saveDir, String fileName) { ReadableByteChannel rbc = null; FileOutputStream fos = null; FileChannel foutc = null; try { rbc = Channels.newChannel(new URL(url).openStream()); File file = new File(saveDir, fileName); file.getParentFile().mkdirs(); fos = new FileOutputStream(file); foutc = fos.getChannel(); foutc.transferFrom(rbc, 0, Long.MAX_VALUE); } catch (IOException e) { e.printStackTrace(); } finally { if (rbc != null) { try { rbc.close(); } catch (IOException e) { e.printStackTrace(); } } if (foutc != null) { try { foutc.close(); } catch (IOException e) { e.printStackTrace(); } } } } public static void downloadByNIO2(String url, String saveDir, String fileName) { try (InputStream ins = new URL(url).openStream()) { Path target = Paths.get(saveDir, fileName); Files.createDirectories(target.getParent()); Files.copy(ins, target, StandardCopyOption.REPLACE_EXISTING); } catch (IOException e) { e.printStackTrace(); } }}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
Java 从网上下载文件的几种方式实例代码详解
下载Word文档到电脑,方便收藏和打印~
下载Word文档
猜你喜欢
Java 从网上下载文件的几种方式实例代码详解
废话不多说了,直接给大家贴代码了,具体代码如下所示;package com.github.pandafang.tool;import java.io.BufferedOutputStream;import java.io.File;impo
2023-05-31
2024-04-02
2023-09-06
Java Config下的Spring Test几种方式实例详解
Java Config 下的Spring Test方式用了三种方式:1.纯手动取bean:package com.wang.test;import com.marsmother.commission.core.config.MapperCo
2023-05-31
2023-05-14
js实现文件流式下载文件方法详解及完整代码
这篇文章主要介绍了用js实现读取文件流并下载到本地的方法,也就是我们经常说的使用js下载文件需要的朋友可以参考下
2022-12-10
2024-04-02
js实现下载(文件流式)方法详解与完整实例源码
这篇文章主要介绍了js实现下载(文件流式)的方法,需要的朋友可以参考下
2022-12-10
java中创建写入文件的6种方式详解与源码实例
这篇文章主要介绍了java中创建写入文件的6种方式详解与源码实例,Files.newBufferedWriter(Java8),Files.write(Java7推荐),PrintWriter,File.createNewFile,FileOutputStream.write(byte[]b)管道流,需要的朋友可以参考下
2022-12-10