我基本上有一个与此处所述类似的问题:EOFexception in Java when reading objectinputstream,但我没有找到干净代码的答案。
答案表明ObjectInputStream#readObject
当阅读器到达文件末尾时将抛出异常。在网上寻找解决方案后,我还没有找到解决方案。对于这种情况,可能是一个好的和干净的解决方案吗?
注意:我已经尝试过这个(但它看起来很丑而且不是干净的代码)。我正在寻找更好的解决方案:
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file));
try {
Object o;
while ((o = ois.readObject()) != null) {
if (o instanceof MyClass) {
MyClass m = (MyClass)o;
//use the object...
}
}
} catch (EOFException eofex) {
//do nothing
} catch (IOException ioex) {
throw ioex;
//I have another try/catch block outside to control the life of the ObjectInputStream
}
//later in the code...
ois.close();