Bonjour pourquoi ai-je une erreur en rouge dans la console à l’exécution pour ce code-ci ?…
Je pensais qu’un try catch ferait disparaitre l’erreur…
try {
FileInputStream file = new FileInputStream("test.serial");
ObjectInputStream ois = new ObjectInputStream(file);
player = (People) ois.readObject();
ois.close();
}
catch (IOException | ClassNotFoundException) {
}
finally {
}
java.io.FileNotFoundException: test.serial (Le fichier spécifié est introuvable)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at model.Game.readPlayer(Game.java:122)
Je comprends qu’il ne trouve pas le fichier, mais c’est "normal" au démarrage du jeu puisque aucune sauvergarde n’a encore été faite…
+0
-0