What is the object serialization?A serialized object represents the type of data stored in the object, its information. Object serialization is a process of reading or writing an entire object from a file. This helps in saving session state information by servlets, for sending parameters for Remote Method Invocation (RMI) calls.What is the object serialization?Object Serilization means converting the data into binary data so as to be able to transfer it over the network and then retrieve it back to its original form on the other end by deserialization.
|