我运行了以下代码并创建了一个文件。我在哪里可以在我的文件系统中找到它?
import java.io.*;
public class FileReaderDemo {
public static void main(String args[]) throws Exception {
File f = new File ("wayback.txt");
f.createNewFile();
System.out.println(f.exists());
}
}
答案 0 :(得分:2)
将以下内容添加到您的程序中,运行它并显示预期的位置:
System.out.println(f.getCanonicalFile());