KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > ObjectInput

java.io
Interface ObjectInput

All Superinterfaces:
DataInput
All Known Implementing Classes:
ObjectInputStream
See Also:
Top Examples, Source Code, InputStream, ObjectOutputStream

int available()
              throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void close()
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int read()
         throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int read(byte[] b)
         throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int read(byte[] b,
         int off,
         int len)
         throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object readObject()
                  throws ClassNotFoundException,
                         IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


long skip(long n)
          throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags