Can anyone tell me what is the need of Serialization in Java and an example scenario to explain the need . I dont need the definition .
|
|
|
Serialization is usually used When the need arises to send your data over network or stored in files. By data I mean objects and not text. Now the problem is your Network infrastructure and your Hard disk are hardware components that understand bits and bytes but not JAVA objects. Serialization is the translation of your Java object's values/states to bytes to send it over network or save it. This is analogous to how your voice is transmitted over PSTN telephone lines. |
||||
|
|
|
So, serialization allows you to read/write arbitrarily complicated Java objects, automatically from/to disk or from/to the network. Whereas XML and JSON are textual formats, serialization is a binary format. Advantages Disadvantages |
|||
|
|
|
Short story about serialization After hard work of many years, Earth's scientist developed a robot who can help them in daily work. But this robot was less featured than the robots which were developed by the scientist of Mars planet. After a meeting between both planet's scientist, it is decided that mars will send their robots to earth. But a problem occurred. The cost of sending 100 robots to earth was $100 millions. And it takes around 60 days for traveling. Finally, Mar's scientist decided to share their secret with Earth's scientists. This secret was about the structure of class/robot. Earth's scientists developed the same structure on earth itself. Mar's scientists serialized the data of each robot and send it to earth. Earth's scientists deserialized the data and fed it into each robot accordingly. This process saved the time in communicating mass amount of data. Some of the robots were being used in some defensive work on Mars. So their scientists marked some crucial properties of those robots as transient before sending their data to Earth. Note that transient property is set to null(in case of reference) or to default value(in case of primitive type) when the object gets deserialized. One more point which was noticed by Earth's scientists is that Mars's scientists ask them to create some static variables to keep environmental detail. This detail is used by some robots. But Mars's scientists dint share this detail. Because the environment on earth was different than Mars environment. |
|||||||
|
|
When you want to save an object's state into a file or send it over the network, you need to transform it into a series of bytes. This is called serialization. Java has a built-in mechanism for that, other options include XML or JSON. Examples when you need this: Caching objects, making remote method calls, saving an object graph to disk. |
||||
|
|
|
|||
|
|