在我目前正在制作的游戏中,我希望在开始游戏时获得退出前的分数。我已经用这段代码为乐谱制作了一个保存文件。
try{
File getScore = new File("Score.dat");
FileOutputStream scoreFile = new FileOutputStream(getScore);
byte[] saveScore = score.getBytes();
scoreFile.write(saveScore);
}catch(FileNotFoundException ex){
}catch(IOException ex){
}
分数显示为字符串,因此在开始游戏时必须将 .dat 文件中的分数作为字符串获取,以便我可以将分数字符串与开始时生成的字符串相等。我尝试使用下面显示的代码。
try{
BufferedReader br = new BufferedReader(new FileReader("Score.dat"));
score = br.toString();
}catch (FileNotFoundException ex){
}
但是当我使用该代码时,我会收到此错误消息。
Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: "java.io.BufferedReader@313159f1"