0 votes
in JAVA by
What are object deserialization and serialization in Java

1 Answer

0 votes
by

What are object serialization and deserialization?

1) The use of java.io.Serializable to convert an object into a sequence of bytes is known as object serialization. Deserialization is the process of recovering back the state of the object from the byte stream.

...