|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.InputStream
org.apache.jackrabbit.util.LazyFileInputStream
public class LazyFileInputStream
This Class implements an InputStream that provides the same functionality
as a FileInputStream but opens the file by the first file access.
| Constructor Summary | |
|---|---|
LazyFileInputStream(File file)
Creates a new LazyFileInputStream for the given file. |
|
LazyFileInputStream(FileDescriptor fdObj)
Creates a new LazyFileInputStream for the given file
desciptor. |
|
LazyFileInputStream(String name)
Creates a new LazyFileInputStream for the given file. |
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
|
void |
mark(int readlimit)
|
boolean |
markSupported()
|
void |
open()
Opens the underlying file input stream in neccessairy. |
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
void |
reset()
|
long |
skip(long n)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LazyFileInputStream(File file)
throws FileNotFoundException
LazyFileInputStream for the given file. If the
file is unreadably, a FileNotFoundException is thrown.
file -
FileNotFoundExceptionpublic LazyFileInputStream(FileDescriptor fdObj)
LazyFileInputStream for the given file
desciptor.
fdObj -
public LazyFileInputStream(String name)
throws FileNotFoundException
LazyFileInputStream for the given file. If the
file is unreadably, a FileNotFoundException is thrown.
name -
FileNotFoundException| Method Detail |
|---|
public void open()
throws IOException
IOException
public int read()
throws IOException
read in class InputStreamIOException
public int available()
throws IOException
available in class InputStreamIOException
public void close()
throws IOException
close in interface Closeableclose in class InputStreamIOException
public void reset()
throws IOException
reset in class InputStreamIOExceptionpublic boolean markSupported()
markSupported in class InputStreampublic void mark(int readlimit)
mark in class InputStream
public long skip(long n)
throws IOException
skip in class InputStreamIOException
public int read(byte[] b)
throws IOException
read in class InputStreamIOException
public int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||