BufferedOutputStream.BufferedOutputStream

BufferedOutputStream.BufferedOutputStream

Class Overview | Class Members | This Package | All Packages

Syntax 1
public BufferedOutputStream( OutputStream out )
Parameters
out
the underlying output stream.
Description
Creates a new buffered output stream to write data to the specified underlying output stream with a default 512-byte buffer size.



Syntax 2
public BufferedOutputStream( OutputStream out, int size )
Parameters
out
the underlying output stream.
size
the buffer size.
Description
Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.