有自动刷新功能。但是,需要开启自动刷新,并且只有在println,printf,format方法的时候有效。
public class PrintWriterDemo {
public static void main(String[] args) throws IOException {
method();
}
private static void method() throws IOException {
PrintWriter pw = new PrintWriter(new FileOutputStream("a.txt"),true);
pw.println("helloworld");
}
希望对你有帮助! |