package com.itcast;
import java.io.*;
public class IODem {
/**
* @param args
*/
public static void main(String[] args)throws IOException {
// TODO Auto-generated method stub
FileWriter fw1=new FileWriter("1.txt");
fw1.write("jalksajglk");
fw1.flush();
}
}此程序在运行的时候系统不是已经建立了缓冲区了吗,怎么在后面的视频中又说到BufferWriter |
|