Explain Serialization and Deserialization.

Technology CommunityCategory: JavaExplain Serialization and Deserialization.
VietMX Staff asked 3 years ago

Java provides a mechanism, called object serialization where an object can be represented as a sequence of bytes and includes the object’s data, as well as information about the object’s type, and the types of data stored in the object. Thus, serialization can be seen as a way of flattening objects, in order to be stored on disk, and later, read back and reconstituted. Deserialisation is the reverse process of converting an object from its flattened state to a live object.