| java.lang.Object java.io.InputStream com.caucho.vfs.StreamImplInputStream
StreamImplInputStream | public class StreamImplInputStream extends InputStream (Code) | | Unbuffered input stream to the stream impl
|
Method Summary | |
public void | close() Closes the stream. | public int | read() Writes a byte to the underlying stream. | public int | read(byte[] buffer, int offset, int length) Reads a buffer to the underlying stream. |
read | public int read() throws IOException(Code) | | Writes a byte to the underlying stream.
Parameters: v - the value to write |
read | public int read(byte[] buffer, int offset, int length) throws IOException(Code) | | Reads 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. |
|
|