KickJava   Java API By Example, From Geeks To Geeks.

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

java.io
Interface ObjectOutput

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

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


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


void write(byte[] b)
           throws IOException
See Also:
DataOutput
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


void write(int b)
           throws IOException
See Also:
DataOutput
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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

Popular Tags