我在将目标文件附加到程序中时遇到麻烦。我找到了this这样的答案。
但是,我不知道如何对AppendableObjectOutputStream
进行子类化。谁能教我更多细节?
最佳答案
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
}