public class MarkableFileInputStream extends InputStream
FileInputStream that supports mark(int) and
reset().
Typically more efficient than new BufferedInputStream(new FileInputstream(...)).
| Constructor and Description |
|---|
MarkableFileInputStream(File file) |
MarkableFileInputStream(String name) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
readpublic MarkableFileInputStream(String name) throws FileNotFoundException
FileNotFoundExceptionpublic MarkableFileInputStream(File file) throws FileNotFoundException
FileNotFoundExceptionpublic int read()
throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic long skip(long n)
throws IOException
skip in class InputStreamIOExceptionpublic int available()
throws IOException
available in class InputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamIOExceptionpublic void mark(int readlimit)
mark in class InputStreampublic void reset()
throws IOException
reset in class InputStreamIOExceptionpublic boolean markSupported()
markSupported in class InputStreamCopyright © 2018 Arno Unkrig. All rights reserved.