我似乎无法让文件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中。的myproject> MYFILE.TXT
没有找到文件或任何建议的原因?
由于
答案 0 :(得分:2)
如果您将此文件称为“myFile.txt”
,则应将文件放在此处MyProject (project root)
myFile.txt
src