好的,现在我有了这个
import java.io.*;
public class driver {
public static void main(String[] args) {
PrintWriter out = null;
try {
out = new PrintWriter("output.txt");
}
catch (FileNotFoundException e) {
System.out.print("file not found");
e.printStackTrace();
}
out.print("hello");
out.close();
}
}
为什么运行程序后eclipse不会创建文件?
答案 0 :(得分:3)
查看您的工作目录。默认情况下,它可能是项目的根文件夹。您还可以通过提供完整路径来验证文件是否已写入:
out = new PrintWriter("C:\\Temp\\output.txt");