| java.lang.Object java.io.OutputStream org.geotools.image.io.OutputStreamAdapter
OutputStreamAdapter | final class OutputStreamAdapter extends OutputStream (Code) | | Wraps an
ImageOutputStream into a standard
OutputStream .
version: $Id: OutputStreamAdapter.java 25467 2007-05-08 16:30:30Z desruisseaux $ author: Martin Desruisseaux |
Method Summary | |
public void | close() Closes this output stream. | public void | flush() Forces any buffered output bytes to be written out. | public void | write(int b) Writes the specified byte to this output stream. | public void | write(byte[] b) Writes
b.length bytes from the specified byte array. | public void | write(byte[] b, int off, int len) Writes
len bytes from the specified byte array. |
flush | public void flush() throws IOException(Code) | | Forces any buffered output bytes to be written out.
throws: IOException - if an I/O error occurs. |
write | public void write(int b) throws IOException(Code) | | Writes the specified byte to this output stream.
throws: IOException - if an I/O error occurs. |
write | public void write(byte[] b) throws IOException(Code) | | Writes
b.length bytes from the specified byte array.
throws: IOException - if an I/O error occurs. |
write | public void write(byte[] b, int off, int len) throws IOException(Code) | | Writes
len bytes from the specified byte array.
throws: IOException - if an I/O error occurs. |
|
|