Java / Java Serialization
What is Serialization in Java?
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.
More Related questions...