All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----java.io.OutputStream
|
+----java.io.FilterOutputStream
|
+----java.io.BufferedOutputStream
len
bytes from the specified byte array
starting at offset off
to this buffered output stream.
protected byte buf[]
protected int count
public BufferedOutputStream(OutputStream out)
public BufferedOutputStream(OutputStream out,
int size)
public synchronized void write(int b) throws IOException
public synchronized void write(byte b[],
int off,
int len) throws IOException
len
bytes from the specified byte array
starting at offset off
to this buffered output stream.
Ordinarily this method stores bytes from the given array into this
stream's buffer, flushing the buffer to the underlying output stream as
needed. If the requested length is at least as large as this stream's
buffer, however, then this method will flush the buffer and write the
bytes directly to the underlying output stream. Thus redundant
BufferedOutputStream
s will not copy data unnecessarily.
public synchronized void flush() throws IOException
All Packages Class Hierarchy This Package Previous Next Index