Module java.desktop

Class FileCacheImageInputStream

java.lang.Object
javax.imageio.stream.ImageInputStreamImpl
javax.imageio.stream.FileCacheImageInputStream
All Implemented Interfaces:
Closeable, DataInput, AutoCloseable, ImageInputStream

public class FileCacheImageInputStream extends ImageInputStreamImpl
An implementation of ImageInputStream that gets its input from a regular InputStream. A file is used to cache previously read data.
  • Constructor Details

    • FileCacheImageInputStream

      public FileCacheImageInputStream(InputStream stream, File cacheDir) throws IOException
      Constructs a FileCacheImageInputStream that will read from a given InputStream.

      A temporary file is used as a cache. If cacheDir is non-null and is a directory, the file will be created there. If it is null, the system-dependent default temporary-file directory will be used (see the documentation for File.createTempFile for details).

      Parameters:
      stream - an InputStream to read from.
      cacheDir - a File indicating where the cache file should be created, or null to use the system directory.
      Throws:
      IllegalArgumentException - if stream is null.
      IllegalArgumentException - if cacheDir is non-null but is not a directory.
      IOException - if a cache file cannot be created.
  • Method Details

    • read

      public int read() throws IOException
      Description copied from class: ImageInputStreamImpl
      Reads a single byte from the stream and returns it as an int between 0 and 255. If EOF is reached, -1 is returned.

      Subclasses must provide an implementation for this method. The subclass implementation should update the stream position before exiting.

      The bit offset within the stream must be reset to zero before the read occurs.

      Specified by:
      read in interface