1.

What Is Serialization In Java?

Answer»

Java SERIALIZATION is the process by which Java objects are serialized by storing object's STATE into a file with extension .ser. Restoring object's state from that file is called deserialization.

Object Serialization CONVERTS Java object into a binary format which can be persisted to disk or SENT over NETWORK to other JVM.

Java serialization is the process by which Java objects are serialized by storing object's state into a file with extension .ser. Restoring object's state from that file is called deserialization.

Object Serialization converts Java object into a binary format which can be persisted to disk or sent over network to other JVM.



Discussion

No Comment Found