Jump to: navigation, search

Difference between revisions of "Serialization"


(Created page with "Serialization is the process of converting an object into a stream of bytes in order to persist it to memory, a database, or a file. Its main purpose is to save the state of a...")
 
Line 1: Line 1:
 
Serialization is the process of converting an object into a stream of bytes in order to persist it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called [[deserialization]].
 
Serialization is the process of converting an object into a stream of bytes in order to persist it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called [[deserialization]].
 +
 +
[[File:Serialization.png|thumb|alt=Alt text|Serialization]]

Revision as of 08:42, 13 January 2012

Serialization is the process of converting an object into a stream of bytes in order to persist it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called Deserialization.

Alt text
Serialization