Possible Duplicate:
What is object serialization?
Want to get idea behind the serialization and de-serialization of object.A simple example would be appreciated.
Want to get idea behind the serialization and de-serialization of object.A simple example would be appreciated. |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
serialization - Turn data into a stream of bytes deserialization - Turn a stream of bytes back into a copy of the original object. For examples, you can look at http://www.google.co.uk/search?q=serialization+deserialization+examples 302K results. ;) |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|