Question

I was having trouble appending object file in my program. I found this SO answer.

However, I do not know how to subclass an AppendableObjectOutputStream. Can anyone kindly teach me how in more detail?

Was it helpful?

Solution

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
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top