public class ByteArrayFileInputStream
extends InputStream
Modifier and Type | Field and Description |
---|---|
protected byte[] |
data |
protected boolean |
deleteOnClose |
protected File |
file |
protected FileInputStream |
fileInputStream |
protected long |
fileSize |
protected int |
index |
protected int |
markIndex |
protected int |
threshold |
Constructor and Description |
---|
ByteArrayFileInputStream(File file,
int threshold) |
ByteArrayFileInputStream(File file,
int threshold,
boolean deleteOnClose) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
File |
getFile() |
protected void |
initData() |
protected void |
initFileInputStream() |
void |
mark(int readLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] bytes) |
int |
read(byte[] bytes,
int offset,
int length) |
void |
reset() |
long |
skip(long skip) |
protected byte[] data
protected boolean deleteOnClose
protected File file
protected FileInputStream fileInputStream
protected long fileSize
protected int index
protected int markIndex
protected int threshold
public ByteArrayFileInputStream(File file, int threshold)
public ByteArrayFileInputStream(File file, int threshold, boolean deleteOnClose)
public int available() throws IOException
available
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
public File getFile()
public void mark(int readLimit)
mark
in class InputStream
public boolean markSupported()
markSupported
in class InputStream
public int read() throws IOException
read
in class InputStream
IOException
public int read(byte[] bytes) throws IOException
read
in class InputStream
IOException
public int read(byte[] bytes, int offset, int length) throws IOException
read
in class InputStream
IOException
public void reset() throws IOException
reset
in class InputStream
IOException
public long skip(long skip) throws IOException
skip
in class InputStream
IOException
protected void initData() throws IOException
IOException
protected void initFileInputStream() throws IOException
IOException