public class LazyFileInputStream
extends java.io.InputStream
FileInputStream but opens the file by the first file access.
| Constructor and Description |
|---|
LazyFileInputStream(java.io.File file)
Creates a new
LazyFileInputStream for the given file. |
LazyFileInputStream(java.io.FileDescriptor fdObj)
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() |
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) |
public LazyFileInputStream(java.io.File file)
throws java.io.FileNotFoundException
LazyFileInputStream for the given file. If the
file is unreadably, a FileNotFoundException is thrown.file - the filejava.io.FileNotFoundException - no filepublic LazyFileInputStream(java.io.FileDescriptor fdObj)
LazyFileInputStream for the given file
descriptor .fdObj - the filepublic LazyFileInputStream(java.lang.String name)
throws java.io.FileNotFoundException
LazyFileInputStream for the given file. If the
file is unreadably, a FileNotFoundException is thrown.name - the namejava.io.FileNotFoundException - no filepublic void open()
throws java.io.IOException
java.io.IOException - if an IO exception occurs.public int read()
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public void reset()
throws java.io.IOException
reset in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public boolean markSupported()
markSupported in class java.io.InputStreampublic void mark(int readlimit)
mark in class java.io.InputStreampublic long skip(long n)
throws java.io.IOException
skip in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public int read(byte[] b)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.public int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOException - if an IO exception occurs.stSoftware Copyright © 2001-2014 stSoftware All Rights Reserved.