Java javax.imageio.stream FileImageInputStream fields, constructors, methods, implement or subclass

Example usage for Java javax.imageio.stream FileImageInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.imageio.stream FileImageInputStream.

The text is from its open source code.

Constructor

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 .

Method

voidclose()
voidflush()
longlength()
Returns the length of the underlying file, or -1 if it is unknown.
intread(byte[] b)
A convenience method that calls read(b, 0, b.length) .
intreadInt()