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 a WeakHashMap in Java ?

Which Class Contains Clone Method in Java ?

How Will You Make an Object Immutable in Java ?

What is the Main Difference Between a Session and Cookie in JSP ?

Enumeration and Iterator, Which One Has Better Performance in Jav ...