我似乎无法让文件 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 下
找不到文件或任何建议的任何原因?
谢谢