|
The advantages of serialization are
- It is easy to use and can be customized.
-
The serialized stream can be encrypted, authenticated and compressed, supporting the needs of secure Java computing.
-
There are simply too many critical technologies that rely upon serialization, including RMI, JavaBeans and EJB.
-
Serialized classes can support coherent versioning and are flexible enough to allow gradual evolution of your application's object schema.
-
Serialization can also be used as a mechanism for exchanging objects between Java and C++ libraries, using third party vendor libraries within C++.
|