标签:bsp stack try pop stat rac ack int file
import java.io.FileWriter; import java.io.IOException; public class FileWriterTest { public static void main(String[] args) { try { var fw = new FileWriter("pop.txt"); { fw.write("11111\r\n"); fw.write("11111\r\n"); fw.write("11111\r\n"); fw.write("11111\r\n"); fw.write("11111\r\n"); } fw.close(); } catch (IOException e) { e.printStackTrace(); } } }
标签:bsp stack try pop stat rac ack int file
原文地址:https://www.cnblogs.com/lianghong881018/p/11302429.html