To
serialize an object
means to convert its state to a byte stream so way that the byte stream can be reverted back into a copy of the object. A Java object is
serializable if its class or any of its superclasses implements either the java.io.
Serializable interface or its subinterface, java.io.Externalizable.
read more >>