API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.io. ObjectInput View Source
Author(s)
unascribed
Since
JDK1.1
Version
1.20, 11/17/05
Serial
Hierarchy
 DataInput
      ObjectInput
Subinterfaces
Description
public interface ObjectInput
  ObjectInput extends the DataInput interface to include the reading of objects.
Methods
Hide/Show inherited methods
public int available () throws IOException
  Returns the number of bytes that can be read without blocking.
public void close () throws IOException
  Closes the input stream.
public int read () throws IOException
  Reads a byte of data.
public int read (byte[] b) throws IOException
  Reads into an array of bytes.
public int read (byte[] b, int off, int len) throws IOException
  Reads into an array of bytes.
public Object readObject () throws ClassNotFoundException IOException
  Read and return an object.
public long skip (long n) throws IOException
  Skips n bytes of input.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar