How do I serialize an object to a file?

Q

How do I serialize an object to a file?

✍: Guest

A

The class whose instances are to be serialized should implement an interface Serializable. Then you pass the instance to the ObjectOutputStream which is connected to a fileoutputstream. This will save the object to a file.

2013-05-20, 1889👍, 0💬