テキストファイルを読み込むプログラムを取得しようとしていますが、プロジェクトディレクトリにpotato.txtファイルが設定されていてもFileNotFoundExceptionがスローされています。スキャナでJavaでファイルを読み取る
import java.io.File;
import java.util.Scanner;
public static void main(String[] args) {
String potato = "potato.txt"; // assume this line can't be changed at all
Scanner scan = new Scanner(new File(potato)); // throws FileNotFoundException
while (scan.hasNextLine()) {
String line = scan.nextLine();
System.out.println(line);
}
}
}
あなたのファイルは正確ですか? – Carlton
絶対パスを使用してみてください。 – mdp
プロジェクト構造を投稿してください – Saravana