java IO操作与字节流(六)缓冲流

缓冲流:
 import java.io.*;
public class Filesio {
    public static void main(String[] args)throws Exception
    {
        FileOutputStream f1=new FileOutputStream("1.txt");
        f1.write("si er san shi wo men de jia".getBytes());
        f1.flush();  //全部输出;
        f1.close();
        FileInputStream f2=new FileInputStream("1.txt");
        byte[] b=new byte[100];
        int len=f2.read(b);
        f2.close();
        System.out.println(new String(b,0,len));
    }

}

你可能感兴趣的:(exception,String,Class,import,byte)