标签: java exception filereader filenotfoundexception
我无法理解如何编写文件名。因为它总是显示FileNotFoundException。
我在IntelliJ上创建了一个名为topnote.txt的文件。但即使我把文件的路径放在一边也找不到它。
答案 0 :(得分:1)
执行以下操作以了解应用程序根目录所在的位置,然后相对于该位置引用该文件:
System.out.println(new java.io.File("test-file-name-this-wont-be-created").getAbsolutePath());