Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
public interface Externalizable
extends Serializable
Note that classes which implement this interface must take into account that all superclass data must also be written to the stream as well. The class implementing this interface must figure out how to make that happen.
This interface can be used to provide object persistence. When an
object is to be stored externally, the writeExternal
method is
called to save state. When the object is restored, an instance is
created using the default no-argument constructor and the
readExternal
method is used to restore the state.
Method Summary | |
void |
|
void |
|
public void readExternal(ObjectInput in) throws ClassNotFoundException, IOException
This method restores an object's state by reading in the instance data for the object from the passed in stream. Note that this stream is not a subclass ofInputStream
, but rather is a class that implements theObjectInput
interface. That interface provides a mechanism for reading in Java data types from a stream.Note that this method must be compatible with
writeExternal
. It must read back the exact same types that were written by that method in the exact order they were written.If this method needs to read back an object instance, then the class for that object must be found and loaded. If that operation fails, then this method throws a
ClassNotFoundException
- Parameters:
in
- AnObjectInput
instance for reading in the object state
- Throws:
ClassNotFoundException
- If the class of an object being restored cannot be foundIOException
- If any other error occurs
public void writeExternal(ObjectOutput out) throws IOException
This method is responsible for writing the instance data of an object to the passed in stream. Note that this stream is not a subclass ofOutputStream
, but rather is a class that implements theObjectOutput
interface. That interface provides a number of methods for writing Java data values to a stream.Not that the implementation of this method must be coordinated with the implementation of
readExternal
.
- Parameters:
out
- AnObjectOutput
instance for writing the object state
- Throws:
IOException
- If an error occurs