Package java.io
Class FilterOutputStream
void write(byte[] buf)
Overrides:
Throws:
void write(byte[] buf, int offset, int len)
Overrides:
Throws:
void write(int b)
Overrides:
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
write(byte[] buf) method:
Writes b.length bytes from the specified byte array to this file output stream.
write(byte[] buf, int offset, int len) method:
Writes len bytes from the specified byte array starting at offset off to this output stream.
write(int b) method:
Writes the specified byte to this output stream. Implements the write method of OutputStream.