public class LazyFileInputStream extends AutoCloseInputStream
Constructor and Description |
---|
LazyFileInputStream(java.io.File file)
Creates a new
LazyFileInputStream for the given file. |
LazyFileInputStream(java.io.FileDescriptor fd)
Creates a new
LazyFileInputStream for the given file
descriptor. |
LazyFileInputStream(java.lang.String name)
Creates a new
LazyFileInputStream for the given file. |
Modifier and Type | Method and Description |
---|---|
int |
available()
Invokes the delegate's
available() method. |
void |
close()
Closes the underlying input stream and replaces the reference to it
with a
ClosedInputStream instance. |
void |
mark(int readlimit)
Invokes the delegate's
mark(int) method. |
boolean |
markSupported()
Invokes the delegate's
markSupported() method. |
int |
read()
Invokes the delegate's
read() method. |
int |
read(byte[] b)
Invokes the delegate's
read(byte[]) method. |
int |
read(byte[] b,
int off,
int len)
Invokes the delegate's
read(byte[], int, int) method. |
void |
reset()
Invokes the delegate's
reset() method. |
long |
skip(long n)
Invokes the delegate's
skip(long) method. |
public LazyFileInputStream(java.io.File file) throws java.io.FileNotFoundException
LazyFileInputStream
for the given file. If the
file is unreadable, a FileNotFoundException is thrown.
The file is not opened until the first byte is read from the stream.file
- the filejava.io.FileNotFoundException
public LazyFileInputStream(java.io.FileDescriptor fd)
LazyFileInputStream
for the given file
descriptor.
The file is not opened until the first byte is read from the stream.fd
- public LazyFileInputStream(java.lang.String name) throws java.io.FileNotFoundException
LazyFileInputStream
for the given file. If the
file is unreadable, a FileNotFoundException is thrown.name
- java.io.FileNotFoundException
public int read() throws java.io.IOException
ProxyInputStream
read()
method.read
in class ProxyInputStream
java.io.IOException
- if an I/O error occurspublic int available() throws java.io.IOException
ProxyInputStream
available()
method.available
in class ProxyInputStream
java.io.IOException
- if an I/O error occurspublic void close() throws java.io.IOException
AutoCloseInputStream
ClosedInputStream
instance.
This method is automatically called by the read methods when the end of input has been reached.
Note that it is safe to call this method any number of times. The original underlying input stream is closed and discarded only once when this method is first called.
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class AutoCloseInputStream
java.io.IOException
- if the underlying input stream can not be closedpublic void reset() throws java.io.IOException
ProxyInputStream
reset()
method.reset
in class ProxyInputStream
java.io.IOException
- if an I/O error occurspublic boolean markSupported()
ProxyInputStream
markSupported()
method.markSupported
in class ProxyInputStream
public void mark(int readlimit)
ProxyInputStream
mark(int)
method.mark
in class ProxyInputStream
readlimit
- read ahead limitpublic long skip(long n) throws java.io.IOException
ProxyInputStream
skip(long)
method.skip
in class ProxyInputStream
n
- the number of bytes to skipjava.io.IOException
- if an I/O error occurspublic int read(byte[] b) throws java.io.IOException
ProxyInputStream
read(byte[])
method.read
in class ProxyInputStream
b
- the buffer to read the bytes intojava.io.IOException
- if an I/O error occurspublic int read(byte[] b, int off, int len) throws java.io.IOException
ProxyInputStream
read(byte[], int, int)
method.read
in class ProxyInputStream
b
- the buffer to read the bytes intooff
- The start offsetlen
- The number of bytes to readjava.io.IOException
- if an I/O error occurs"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"