0 votes
in JAVA by
What is the purpose of serialization in java?

1 Answer

0 votes
by

What is the purpose of serialization in java?

Object Serialization is a process used to convert the state of an object into a byte stream, which can be persisted into disk/file or sent over the network to any other running Java virtual machine. The reverse process of creating an object from the byte stream is called deserialization.

...