java.io.InputStream
, java.io.ObjectOutputStream
, java.io.ObjectInputStream
Modifier and Type | Method and Description |
---|---|
public void | |
public void | |
public void | |
public void | |
public void | write(byte[]
the data to be written b, int the start offset in the data off, int the number of bytes that are written len)Redeclares java. Writes a sub array of bytes. |
public void |
close | back to summary |
---|---|
public void close() throws IOException Redeclares java. Closes the stream. This method must be called to release any resources associated with the stream.
|
flush | back to summary |
---|---|
public void flush() throws IOException Flushes the stream. This will write any buffered output bytes.
|
write | back to summary |
---|---|
public void write(int b) throws IOException Redeclares java. Writes a byte. This method will block until the byte is actually written.
|
write | back to summary |
---|---|
public void write(byte[] b) throws IOException Redeclares java. Writes an array of bytes. This method will block until the bytes are actually written.
|
write | back to summary |
---|---|
public void write(byte[] b, int off, int len) throws IOException Redeclares java. Writes a sub array of bytes.
|
writeObject | back to summary |
---|---|
public void writeObject(Object obj) throws IOException Write an object to the underlying storage or stream. The class that implements this interface defines how the object is written.
|