File read = new File("Numbers.txt");
Scanner inputFile = new Scanner(read);
while(inputFile.hasNext())
{
sum = inputFile.nextDouble() + sum;
count++;
}
inputFile.close();//close the input file
テキスト ファイルからデータを読み込もうとしていますNumbers.txt
。次のコードは正常にコンパイルされますがJava.io.FileNotFoundException
、プログラムを実行するとエラーが発生します。また、完全なファイル パスを入力しようとしましたが、間違っている可能性があります。何か案は?