Tagged “Deserialization in Java”

Serialization in Java

14 Sep, 2014

Serialization is the process of encoding an object to byte stream and reverse of it is called deserialization. It is platform independent process which means you can serialize the object in one JVM and can transport the object over network and/ or store it in file system and then deserialize it in other or on same JVM.

Tags:

See all tags.