Je lis un fichier sélectionné par un JFileChooser, ce qui signifie que le fichier existe et que je sais qu'il est là, mais je reçois toujours une FileNotFoundException.
J'ai codé en dur le chemin d'accès à ce fichier et cela fonctionne bien.
JFileChooser chooser = new JFileChooser();
int rueckgabeWert = chooser.showOpenDialog(null);
if (rueckgabeWert == JFileChooser.APPROVE_OPTION)
{
filetoopen = chooser.getSelectedFile().getName();
Path path = Paths.get(filetoopen);
List<String> allLines = null;
try
{
allLines = Files.readAllLines(path, StandardCharsets.UTF_8);
}
catch (IOException e1)
{
e1.printStackTrace();
}
for (int i = 0; i < allLines.size(); i++)
{
System.out.println(allLines.get(i));
}
}
Comment faire pour que le fichier s'ouvre correctement ?