私はnetbeansでデスクトッププロジェクトを作成しました。プロジェクトフォルダーには、file.txt、file2.txt、file3.txtの3つのファイルがあり、これらの3つのファイルを呼び出したいプログラムのロードで、これが私が試したコードです:
public void run() {
Path path = Paths.get("file.txt");
Path path2 = Paths.get("file2.txt");
Path path3 = Paths.get("file3.txt");
if(Files.exists(path) && Files.exists(path2) && Files.exists(path3)) {
lireFichiers();
}else{
JOptionPane.showConfirmDialog(null, "Files didn't found !");
}
}
しかし、プログラムを実行すると、次のメッセージが表示されます。"Files didn't found !"
これは、彼がそれらのファイルを見つけられなかったことを意味します。
これらのファイルは、次のコードによって作成されます。
File file = new File("Id.txt");
File file2 = new File("Pass.txt");
File file3 = new File("Remember.txt");