[JAVA]字节流拷贝文件
Posted zhengxl5566
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[JAVA]字节流拷贝文件相关的知识,希望对你有一定的参考价值。
import java.io.*; public class CopyFile { public static void main(String[] args) { //1、创建源 File in = new File("d:/test/1111.mp4"); File out = new File("d:/test/222.mp4"); //2、选择流 InputStream is = null; OutputStream os = null; try { //3、操作数据 is = new FileInputStream(in); os = new FileOutputStream(out); byte[] buf = new byte[1024*1024]; int length = -1;//记录实际读取到的长度 while ((length = is.read(buf)) != -1) { os.write(buf, 0, length); } os.flush(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally {//4、关闭流(先打开的后关闭) try { if (os != null) os.close(); } catch (IOException e) { e.printStackTrace(); } try { if (is != null) is.close(); } catch (IOException e) { e.printStackTrace(); } } } }
以上是关于[JAVA]字节流拷贝文件的主要内容,如果未能解决你的问题,请参考以下文章
Java学习笔记6.1.3 字节流 - 字节流缓冲区与缓冲字节流