标题: [Oracle interview]How do I serialize an object to a file? [打印本页] 作者: 于军 时间: 2013-8-16 15:31 标题: [Oracle interview]How do I serialize an object to a file? 作者: 王浩 时间: 2013-8-16 15:41
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.