用IO字节流复制文件-CopyFileByIo

Posted 笨笨2013A

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用IO字节流复制文件-CopyFileByIo相关的知识,希望对你有一定的参考价值。

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;

//文件复制 
//E:/3.jpg ---> D:/3copy.jpg
public class CopyFileByIo {
    
    public static void main(String[] args) {
        
        FileInputStream fis=null;
        FileOutputStream fos=null;
        try {
            //输入流读取 E:/3.jpg
             fis=new FileInputStream("e:/3.jpg");
            //输出流
             fos=new FileOutputStream("d:/3copy.jpg");
            //字节缓冲区
            byte[] buffer=new byte[1024];
            int len=0;
            while((len=fis.read(buffer))!=-1){
                fos.write(buffer, 0, len);
                fos.flush();
            }
            System.out.println("复制成功!");
        } catch (Exception e) {
            e.printStackTrace();
        } finally{
            try {
                fos.close();
                fis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

 

以上是关于用IO字节流复制文件-CopyFileByIo的主要内容,如果未能解决你的问题,请参考以下文章

IO流24 - 字节流 - 字节流的四种复制文件方式对比

IO流,字节流复制文件,字符流+缓冲复制文件

使用字节流复制一个文件夹

字节流输出输入--文件复制及输出

IO流 - 复制文件(字节缓冲流+字节流)

使用文件字节流实现文件复制