每次运行程序时,我想在文件中序列化同一个对象。这是一个解释我问题的简单算法。
在begening中,我在String
上存储writer
。在最后我读了一个文件。
这个程序的目标是,如果我运行我的程序X时间,我存储并在屏幕上打印X时间我的对象。
class ReadFile {
static ObjectOutputStream writer = null;
public static void main(String[] args) throws IOException, ClassNotFoundException {
writer = new ObjectOutputStream(new FileOutputStream("trace", true));
store("String");
if (writer != null) {
writer.close();
}
open("file.tmp");
}
static public void store(String chaine) {
if (writer == null) {
return;
}
try {
writer.writeObject(chaine);
} catch (IOException ex) {
}
}
static public void open(String file) throws FileNotFoundException, IOException, ClassNotFoundException {
StringBuilder str = new StringBuilder();
ObjectInputStream objs;
try {
objs = new ObjectInputStream(new FileInputStream(file));
try {
while (true) {
Object obj = objs.readObject();
str.append(obj.toString());
}
} catch (EOFException ex) {
}
objs.close();
} catch (Exception ex) {
ex.printStackTrace(System.err);
}
}
}
当我运行此程序时,我有这个错误:
java.io.StreamCorruptedException: invalid type code: AC
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1355)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
at ReadFile.open(ReadFile.java:47)
at ReadFile.main(ReadFile.java:35)
我能做什么?
答案 0 :(得分:1)
根据this帖子,您无法附加到ObjectOutputStream,您正尝试通过在附加模式下打开基础FileOutputStream来执行此操作。在该帖子中提到了一个解决方案,您可以创建一个AppendableObjectOutputStream,或者只需打开FileOutputStream而不附加。