java.lang.Object
javax.imageio.stream.ImageInputStreamImpl
javax.imageio.stream.ImageOutputStreamImpl
javax.imageio.stream.FileCacheImageOutputStream
- All Implemented Interfaces:
- Closeable,- DataInput,- DataOutput,- AutoCloseable,- ImageInputStream,- ImageOutputStream
public class FileCacheImageOutputStream extends ImageOutputStreamImpl
An implementation of 
ImageOutputStream that writes its
 output to a regular OutputStream.  A file is used to
 cache data until it is flushed to the output stream.- 
Field SummaryFields declared in class javax.imageio.stream.ImageInputStreamImplbitOffset, byteOrder, flushedPos, streamPos
- 
Constructor SummaryConstructors Constructor Description FileCacheImageOutputStream(OutputStream stream, File cacheDir)Constructs aFileCacheImageOutputStreamthat will write to a givenoutputStream.
- 
Method SummaryModifier and Type Method Description voidclose()Closes thisFileCacheImageOutputStream.booleanisCached()Returnstruesince thisImageOutputStreamcaches data in order to allow seeking backwards.booleanisCachedFile()Returnstruesince thisImageOutputStreammaintains a file cache.booleanisCachedMemory()Returnsfalsesince thisImageOutputStreamdoes not maintain a main memory cache.voidseek(long pos)Sets the current stream position and resets the bit offset to 0.Methods declared in class javax.imageio.stream.ImageInputStreamImplcheckClosed, finalize, length, mark, read, read, read, reset, skipBytes, skipBytesMethods declared in class java.lang.Objectclone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface javax.imageio.stream.ImageInputStreamflush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, length, mark, read, read, read, readBit, readBits, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedInt, readUnsignedShort, readUTF, reset, setBitOffset, setByteOrder, skipBytes, skipBytesMethods declared in interface javax.imageio.stream.ImageOutputStreamflushBefore, write, write, write, writeBit, writeBits, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeChars, writeDouble, writeDoubles, writeFloat, writeFloats, writeInt, writeInts, writeLong, writeLongs, writeShort, writeShorts, writeUTF
- 
Constructor Details- 
FileCacheImageOutputStreamConstructs aFileCacheImageOutputStreamthat will write to a givenoutputStream.A temporary file is used as a cache. If cacheDiris non-nulland is a directory, the file will be created there. If it isnull, the system-dependent default temporary-file directory will be used (see the documentation forFile.createTempFilefor details).- Parameters:
- stream- an- OutputStreamto write to.
- cacheDir- a- Fileindicating where the cache file should be created, or- nullto use the system directory.
- Throws:
- IllegalArgumentException- if- streamis- null.
- IllegalArgumentException- if- cacheDiris non-- nullbut is not a directory.
- IOException- if a cache file cannot be created.
 
 
- 
- 
Method Details- 
seekSets the current stream position and resets the bit offset to 0. It is legal to seek past the end of the file; anEOFExceptionwill be thrown only if a read is performed. The file length will not be increased until a write is performed.- Parameters:
- pos- a- longcontaining the desired file pointer position.
- Throws:
- IndexOutOfBoundsException- if- posis smaller than the flushed position.
- IOException- if any other I/O error occurs.
 
- 
isCachedpublic boolean isCached()Returnstruesince thisImageOutputStreamcaches data in order to allow seeking backwards.- Specified by:
- isCachedin interface- ImageInputStream
- Overrides:
- isCachedin class- ImageInputStreamImpl
- Returns:
- true.
- See Also:
- isCachedMemory(),- isCachedFile()
 
- 
isCachedFilepublic boolean isCachedFile()Returnstruesince thisImageOutputStreammaintains a file cache.- Specified by:
- isCachedFilein interface- ImageInputStream
- Overrides:
- isCachedFilein class- ImageInputStreamImpl
- Returns:
- true.
- See Also:
- isCached(),- isCachedMemory()
 
- 
isCachedMemorypublic boolean isCachedMemory()Returnsfalsesince thisImageOutputStreamdoes not maintain a main memory cache.- Specified by:
- isCachedMemoryin interface- ImageInputStream
- Overrides:
- isCachedMemoryin class- ImageInputStreamImpl
- Returns:
- false.
- See Also:
- isCached(),- isCachedFile()
 
- 
closeCloses thisFileCacheImageOutputStream. All pending data is flushed to the output, and the cache file is closed and removed. The destinationOutputStreamis not closed.- Throws:
- IOException- if an error occurs.
 
 
-