Example usage for Java javax.imageio.stream FileImageInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
FileImageInputStream(File f) Constructs a FileImageInputStream that will read from a given File . | |
FileImageInputStream(RandomAccessFile raf) Constructs a FileImageInputStream that will read from a given RandomAccessFile . |
void | close() |
void | flush() |
long | length() Returns the length of the underlying file, or -1 if it is unknown. |
int | read(byte[] b) A convenience method that calls read(b, 0, b.length) . |
int | readInt() |