Java java.io BufferedOutputStream fields, constructors, methods, implement or subclass

Example usage for Java java.io BufferedOutputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io BufferedOutputStream.

The text is from its open source code.

Constructor

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.

Method

voidclose()
Closes this output stream and releases any system resources associated with the stream.
voidflush()
Flushes this buffered output stream.
voidwrite(int b)
Writes the specified byte to this buffered output stream.
voidwrite(byte b[], int off, int len)
Writes len bytes from the specified byte array starting at offset off to this buffered output stream.