1

我似乎无法让文件 IO 在 netbeans 中工作

public static void main(String[] args) throws IOException
    {
        System.out.println("File Location: "+ System.getProperty("myFile.txt"));

        //File file = new File("myFile.txt");

    }

我对此有一个例外。

Exception in thread "main" java.lang.NullPointerException

并输出:

File Location: null

没有System.getProperty,我得到FileNotFoundException

java.io.FileNotFoundException: myFile.txt (The system cannot find the file specified)

该文件本身位于项目的源目录中,并且还显示在 IDE 中的 Source Packages > myproject> myFile.txt 下

找不到文件或任何建议的任何原因?

谢谢

4

1 回答 1

2

如果你这样称呼它“myFile.txt”,文件应该放在这里

MyProject (project root)
    myFile.txt
    src
于 2013-11-03T00:10:10.323 回答