What is serialization?
Serialization is the process of converting an object into a stream of bytes. Deserialization is the opposite process, i.e. creating an object from a stream of bytes. Serialization/Deserialization is mostly used to transport objects (e.g. during remoting), or to persist objects (e.g. to a file or database).
Related Questions
- Why am I having an InvalidClassException thrown during the serialization of my object which implements the Externalizable interface?
- IS SERIALIZATION OR COLOR CODING A VIABLE WAY TO DIFFERENTIATE ONE SLING FROM ANOTHER IN THE EVENT THEY WERE IDENTICAL MODELS?
- Are there any system properties in Java that affect Serialization?