Name

ObjectOutput

Synopsis

This interface extends the DataOutput interface and adds methods for serializing objects and writing bytes and arrays of bytes.

java.io.ObjectOutput

Figure 9-37. java.io.ObjectOutput

public interface ObjectOutput extends DataOutput {
// Public Instance Methods
     void close( ) throws IOException;  
     void flush( ) throws IOException;  
     void write(byte[ ] b) throws IOException;  
     void write(int b) throws IOException;  
     void write(byte[ ] b, int off, int len) throws IOException;  
     void writeObject(Object obj) throws IOException;  
}

Implementations

ObjectOutputStream

Passed To

Externalizable.writeExternal( ), ObjectOutputStream.PutField.write( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.