标签:img int div static color nbsp new string src
1 public static void main(String[] args) throws IOException { 2 PrintWriter pw = new PrintWriter("src\\d.txt"); 3 pw.write("hello"); 4 pw.write("\r\n"); 5 pw.flush(); 6 pw.write("world"); 7 pw.write("\r\n"); 8 pw.flush(); 9 // pw.close(); 10 pw.println("hello"); 11 pw.println("world"); 12 pw.println("hello"); 13 pw.flush(); 14 pw.close();
目标文件是d.txt的时候,字符串能够打印再文件中,当我将目标文件换成e.txt的时候,第一次能打印,执行第二次执行后e.txt文件中的内容就为空
标签:img int div static color nbsp new string src
原文地址:https://www.cnblogs.com/zyxyz/p/11355262.html