public class StreamImplInputStream
extends java.io.InputStream
| Constructor and Description |
|---|
StreamImplInputStream(StreamImpl stream) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the stream.
|
int |
read()
Writes a byte to the underlying stream.
|
int |
read(byte[] buffer,
int offset,
int length)
Reads a buffer to the underlying stream.
|
public StreamImplInputStream(StreamImpl stream)
public int read()
throws java.io.IOException
read in class java.io.InputStreamv - the value to writejava.io.IOExceptionpublic int read(byte[] buffer,
int offset,
int length)
throws java.io.IOException
read in class java.io.InputStreambuffer - the byte array to write.offset - the offset into the byte array.length - the number of bytes to write.java.io.IOExceptionpublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.InputStreamjava.io.IOException