| java.lang.Object java.io.OutputStream com.caucho.vfs.StreamImplOutputStream
StreamImplOutputStream | public class StreamImplOutputStream extends OutputStream (Code) | | Unbuffered output stream to the stream impl
the VFS.
|
Method Summary | |
public void | close() Closes the stream. | public void | flush() Flushes the write output. | public void | write(int v) Writes a byte to the underlying stream. | public void | write(byte[] buffer, int offset, int length) Writes a buffer to the underlying stream. |
write | public void write(int v) throws IOException(Code) | | Writes a byte to the underlying stream.
Parameters: v - the value to write |
write | public void write(byte[] buffer, int offset, int length) throws IOException(Code) | | Writes a buffer to the underlying stream.
Parameters: buffer - the byte array to write. Parameters: offset - the offset into the byte array. Parameters: length - the number of bytes to write. |
|
|