Explain the concept of De-serialization.
Serialization is the process of converting an object into a stream of bytes. De-serialization in Java is the process by which an object that was previously serialized is reconstructed back into its original form that is an instance of an object. The input for de-serialization is a stream of bytes which are fetched from a file, network or database.
Comments
Leave a comment