我在程序中附加目标文件时遇到问题。我找到了this SO回答。
但是,我不知道如何对AppendableObjectOutputStream
进行子类化。谁能亲切地教我如何更详细?
答案 0 :(得分:1)
class YourClass extends AppendableObjectOutputStream {
// any constructors required, if no default for Appendable
public AppendableObjectOutputStream(<your args here>) {
super(<other args here>);
}
// any methods you want to @Override here
}