开发者

What is Serialization and Deserialization conceptually? [duplicate]

This question already has answers here: 开发者_StackOverflow中文版 Closed 11 years ago.

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜