What is Externalizable Interface in Java ?

Externalizable interface extends Serializable interface in Java. It is used for giving the Class control over saving and restoring the contents of its instances.

A class implements methods writeExternal() and readExternal() to store and restore the object.



You May Interest

What is an EnumSet in Java ?

How Will You Implement a Thread Safe JSP Page ?

Why Integer Class in Final in Java ?

What are the Main Uses of Singleton Design Pattern in Java ?

What are the Differences Between a Vector and an ArrayList in Jav ...