Serialization and Deserialization
Serialization and Deserialization Serialization is a process of converting the state of an object into a byte stream. Deserialization is the reverse mechanism of serialization where the task of byte stream is to reconstruct the real object of Java in memory. This method is used to persist the object. The serialized classes should have theRead more about Serialization and Deserialization[…]