Possible Duplicate:
What is object serialization?
Want to get idea behind the serialization and de-serialization of object.A simple example would be appreciated.
Possible Duplicate:
What is object serialization?
Want to get idea behind the serialization and de-serialization of object.A simple example would be appreciated.
serialization - Turn data into a stream of bytes
deserialization - Turn a stream of bytes back into a copy of the original object.
 
    
     
    
    The objects created in java exists only while Java Virtual Machine is running...
Serialization - saving the created objects in the sequence of bytes...
Deserialization - Retrieving those saved bytes into the form of original object..
This article helps you to understand more... serialization
 
    
    Serialisation is the process of turning an object into a series of bytes for transferring or storing. Deserialization those same bytes and turns them back into objects.
