java.io.ObjectOutput (JDK 1.1)
This interface extends the DataOutput interface and adds methods for serializing objects and writing bytes and arrays of bytes.
public abstract interfaceObjectOutputextends DataOutput { //Public Instance Methodspublic abstract voidclose() throws IOException; public abstract voidflush() throws IOException; public abstract voidwrite(intb) throws IOException; //From DataOutputpublic abstract voidwrite(byte[]b) throws IOException; //From DataOutputpublic abstract voidwrite(byte[]b, intoff, intlen) throws IOException; //From DataOutputpublic abstract voidwriteObject(Objectobj) throws IOException; }
Implemented By:
ObjectOutputStream
Passed To:
Externalizable.writeExternal()