Java Serialization and De-serialization
Java Serialization and De-serialization Java serialization is a process of writing the state of the object into a writable byte stream. Serializable classes can be written to a file on your computer. The reverse process of serialization is called de-serialization. i.e restoring the state of the object from the byte stream. Java Serialization Serialization […]