What is meant by "object serialization"? Can you please explain it with some examples?
|
feedback
|
|
Serialization is the conversion of an object to a series of bytes, so that the object can be easily saved to persistent storage or streamed across a communication link. The byte stream can then be deserialised - converted into a replica of the original object. | |||
|
feedback
|
|
You can think in serialization as the process to convert an object instance, into a sequence of bytes ( which may be binary or not depends on the implementation ) . It is very useful when you want to transmit one object data across the network, for instance from one JVM to another. In Java, the serialization mechanism is built-in the platform, but you need to let the program you want an object to be serializable by implementing the Serializable interface. You can also, prevent some data in your object from being serialized, by marking the attribute as transient Finally you can override the default mechanism, and provide your own, this may be suitable in some special cases. To do this, you use one of the hidden features in java. It is important to notice that what gets serialized is the "value" of the object, or the contents, and not the class definition. Thus methods are not serialized. Here is a very basic sample with comments to facilitate its reading:
When we run this program, the file "o.ser" is created and we can see what happened behind. If we change the value of: someInteger to , for example Integer.MAX_VALUE we may compare the output to see what the difference is. Here's an screenshot showing precisely that difference:
Can you spot the differences ;) There is an additional relevant field in java serialization: The serialversionUID but, I guess this is already too long to cover it. | ||||
|
feedback
|
|
I liked the way @OscarRyz presents. Although here i am continuing the story of serialization which was originally written by @articlestack. Even though knowing about the robot class structure and having serialized data Earth's scientist were not able to deserialize the data which can make robots working.
Mars's scientists were waiting for the complete payment. Once the payment was done Mars's scientists shared the serialversionUID with Earth's scientists. Earth's scientist set it to robot class and everything became fine. | ||||
|
feedback
|
|
I think this provides a good definition for serialization: http://en.wikipedia.org/wiki/Serialization and it provides a java sample | |||
|
feedback
|
|
Serialization is the process of converting an object's state to bits so that it can be stored on a hard drive. When you deserialize the same object, it will retain its state later. It lets you recreate objects without having to save the objects' properties by hand. | |||
feedback
|
|
Serialization is the process of turning a Java object into byte array and then back into object again with its preserved state. Useful for various things like sending objects over network or caching things to disk. Read more from this short article which explains programming part of the process quite well and then move over to to Serializable javadoc. You may also be interested in reading this related question. | |||
|
feedback
|
|
Serialization is taking a "live" object in memory and converting it to a format that can be stored somewhere (eg. in memory, on disk) and later "deserialized" back into a live object. | ||||
|
feedback
|
|
Serialization means persisting objects in java. If you want to save the state of the object and want to rebuild the state later (may be in another JVM) serialization can be used. Note that the properties of an object is only going to be saved. If you want to resurrect the object again you should have the class file, because the member variables only will be stored and not the member functions. eg:
The Searializable is a marker interface which marks that your class is serializable. Marker interface means that it is just an empty interface and using that interface will notify the JVM that this class can be made serializable. | ||||
|
feedback
|
