Example usage for Java java.io BufferedOutputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
BufferedOutputStream(OutputStream out) Creates a new buffered output stream to write data to the specified underlying output stream. | |
BufferedOutputStream(OutputStream out, int size) Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size. |
void | close() Closes this output stream and releases any system resources associated with the stream. |
void | flush() Flushes this buffered output stream. |
void | write(int b) Writes the specified byte to this buffered output stream. |
void | write(byte b[], int off, int len) Writes len bytes from the specified byte array starting at offset off to this buffered output stream. |