我正在尝试创建一个存储我正在制作的游戏的高分的文件。我正在使用序列化程序将我的数组写入文件。该文件是在运行我的代码时创建的,但该文件为空(0字节)。我没有收到任何错误。任何人都可以告诉我为什么该文件不包含我的数据?
public class BestTimes implements Serializable
{
BestTimes[] beginner = new BestTimes[2];
public static void main(String args[]) throws IOException {
BestTimes bestTimes = new BestTimes();
bestTimes.outputToFile();
}
public BestTimes() {
beginner[0] = new BestTimes(1, "John", 10.5);
beginner[1] = new BestTimes(2, "James", 20.3);
}
public int ranking;
public String playerName;
public double time;
public BestTimes(int r, String p, double t)
{
ranking = r;
playerName = p;
time = t;
}
public void outputToFile() throws IOException {
try(FileOutputStream f = new FileOutputStream("bestTimes.txt")) {
ObjectOutputStream s = new ObjectOutputStream(f);
s.writeObject(beginner);
s.flush();
s.close();
} finally {
FileOutputStream f = new FileOutputStream("bestTimes.txt");
f.close();
}
}
}
答案 0 :(得分:2)
当然是空的。您在finally
块中创建了一个新的。
只需删除该代码即可。