字节流 自定义缓冲字节数组 读写文件

package com.heima.lei;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Test1 {

    /**字节流 自定义缓冲字节数组 读写文件 * @param args * @throws IOException */
    public static void main(String[] args) throws IOException {
        FileInputStream fis = new FileInputStream("001.txt");
        FileOutputStream fos = new FileOutputStream("002.txt");
        int len;
        byte [] arr = new byte[5];
        while((len = fis.read(arr)) != -1){
            fos.write(arr,0,len);
        }
        fis.close();
        fos.close();
    }

}

你可能感兴趣的:(字节流 自定义缓冲字节数组 读写文件)