public class BoundedInputStream extends InputStream
| Constructor and Description | 
|---|
| BoundedInputStream(InputStream in,
                  long size)Creates the stream that will at most read the given amount of
 bytes from the given stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | close() | 
| int | read() | 
| int | read(byte[] b,
    int off,
    int len) | 
available, mark, markSupported, read, reset, skippublic BoundedInputStream(InputStream in, long size)
in - the stream to read fromsize - the maximum amount of bytes to readpublic int read() throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b, int off, int len) throws IOException
read in class InputStreamIOExceptionpublic void close()
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamCopyright © 2018 The Apache Software Foundation. All rights reserved.