Serialization Using java
In computing, serialization is the process of translating data structures or object state into a format that can be stored or transmitted and reconstructed later is called as serialization. Simply,Java is an object oriented programming language.Machines store files as byte stream in any file in digital world.Java have many object which include data , & it can convert to the byte stream & write to file.After write as byte stream(Called Serialization ), we can send or store that data any where. If you can convert that byte stream successfully as same as to the the previous object it called as the De-Serialization . Importance of Serialization Communication: If you have two machines that are running the same code, and they need to communicate, an easy way is for one machine to build an object with information that it would like to transmit, Persistence: If you want to store the state of a particular operation in a database, it can b...