Serialization :

Serialization is the process of saving the state of an object in a persistent storage media by converting the object to a linear stream of bytes.
The object can be persisted to a file, a database or even in the memory
The following are the basic advantages of serialization:
-          Facilitate the transportation of an object through a network
-          Create a clone of an object
Serialization can be of the following types:
         Binary Serialization
        SOAP Serialization
        XML Serialization
        Custom Serialization

Comments (0)