API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.io. ObjectOutput View Source
Author(s)
unascribed
Since
JDK1.1
Version
1.17, 11/17/05
Serial
Hierarchy
 DataOutput
      ObjectOutput
Subinterfaces
Description
public interface ObjectOutput
  ObjectOutput extends the DataOutput interface to include writing of objects.
Methods
Hide/Show inherited methods
public void close () throws IOException
  Closes the stream.
public void flush () throws IOException
  Flushes the stream.
public void write (byte[] b) throws IOException [Specified in DataOutput]
  Writes an array of bytes.
public void write (byte[] b, int off, int len) throws IOException [Specified in DataOutput]
  Writes a sub array of bytes.
public void write (int b) throws IOException [Specified in DataOutput]
  Writes a byte.
public void writeObject (Object obj) throws IOException
  Write an object to the underlying storage or stream.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar