我正在尝试使用打印编写器创建和写入 java 文件。
我查看了如何在 Java 中创建文件并写入文件?
我无法写入文件。该文件已创建但没有文本有人可以告诉我我错过了什么吗?
谢谢
static void createFile() throws FileNotFoundException{
String filename = "nothign.txt";
FileOutputStream connection1;
connection1 = new FileOutputStream( filename );
PrintWriter printnothing = null;
printnothing = new PrintWriter(connection1);
printnothing.printf("/nnewline writesomething/n exo");
printnothing.println("trying to write something");
}// createFile Method