In this tutorial we will discuss about the Externalizable interface in Java. The Externalizable interface provides a way to implement a custom serialization mechanism. A class that implements the Externalizable interface is responsible to save and restore the contents of its own instances. Furthermore, the Externalizable interface extends the Serializable interface and provides two methods to serialize and de-serialize an ...
Read More »