public class

FileImageOutputStream

extends ImageOutputStreamImpl
java.lang.Object
   ↳ javax.imageio.stream.ImageInputStreamImpl
     ↳ javax.imageio.stream.ImageOutputStreamImpl
       ↳ javax.imageio.stream.FileImageOutputStream

Class Overview

An implementation of ImageOutputStream that writes its output directly to a File or RandomAccessFile.

Summary

[Expand]
Inherited Fields
From class javax.imageio.stream.ImageInputStreamImpl
Public Constructors
FileImageOutputStream(File f)
Constructs a FileImageOutputStream that will write to a given File.
FileImageOutputStream(RandomAccessFile raf)
Constructs a FileImageOutputStream that will write to a given RandomAccessFile.
Public Methods
void close()
Closes the stream.
long length()
Returns -1L to indicate that the stream has unknown length.
int read()
Reads a single byte from the stream and returns it as an int between 0 and 255.
int read(byte[] b, int off, int len)
Reads up to len bytes from the stream, and stores them into b starting at index off.
void seek(long pos)
Sets the current stream position and resets the bit offset to 0.
void write(byte[] b, int off, int len)
Writes a sequence of bytes to the stream at the current position.
void write(int b)
Writes a single byte to the stream at the current position.
Protected Methods
void finalize()
Finalizes this object prior to garbage collection.
[Expand]
Inherited Methods
From class javax.imageio.stream.ImageOutputStreamImpl
From class javax.imageio.stream.ImageInputStreamImpl
From class java.lang.Object
From interface java.io.DataInput
From interface java.io.DataOutput
From interface javax.imageio.stream.ImageInputStream
From interface javax.imageio.stream.ImageOutputStream

Public Constructors

public FileImageOutputStream (File f)

Constructs a FileImageOutputStream that will write to a given File.

Parameters
f a File to write to.
Throws
IllegalArgumentException if f is null.
SecurityException if a security manager exists and does not allow write access to the file.
FileNotFoundException if f does not denote a regular file or it cannot be opened for reading and writing for any other reason.
IOException if an I/O error occurs.

public FileImageOutputStream (RandomAccessFile raf)

Constructs a FileImageOutputStream that will write to a given RandomAccessFile.

Parameters
raf a RandomAccessFile to write to.
Throws
IllegalArgumentException if raf is null.

Public Methods

public void close ()

Closes the stream. Attempts to access a stream that has been closed may result in IOExceptions or incorrect behavior. Calling this method may allow classes implementing this interface to release resources associated with the stream such as memory, disk space, or file descriptors.

Throws
IOException

public long length ()

Returns -1L to indicate that the stream has unknown length. Subclasses must override this method to provide actual length information.

Returns
  • -1L to indicate unknown length.

public int read ()

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.

Returns
  • the value of the next byte in the stream, or -1 if EOF is reached.
Throws
IOException

public int read (byte[] b, int off, int len)

Reads up to len bytes from the stream, and stores them into b starting at index off. If no bytes can be read because the end of the stream has been reached, -1 is returned.

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

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

Parameters
b an array of bytes to be written to.
off the starting position within b to write to.
len the maximum number of bytes to read.
Returns
  • the number of bytes actually read, or -1 to indicate EOF.
Throws
IOException

public void seek (long pos)

Sets the current stream position and resets the bit offset to 0. It is legal to seeking past the end of the file; an EOFException will be thrown only if a read is performed. The file length will not be increased until a write is performed.

Parameters
pos a long containing the desired file pointer position.
Throws
IndexOutOfBoundsException if pos is smaller than the flushed position.
IOException if any other I/O error occurs.

public void write (byte[] b, int off, int len)

Writes a sequence of bytes to the stream at the current position. If len is 0, nothing is written. The byte b[off] is written first, then the byte b[off + 1], and so on.

If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the flushBits method of ImageOutputStreamImpl to guarantee this.

Parameters
b an array of bytes to be written.
off the start offset in the data.
len the number of bytes to write.
Throws
IOException

public void write (int b)

Writes a single byte to the stream at the current position. The 24 high-order bits of b are ignored.

If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the flushBits method of ImageOutputStreamImpl to guarantee this.

Parameters
b an int whose lower 8 bits are to be written.
Throws
IOException

Protected Methods

protected void finalize ()

Finalizes this object prior to garbage collection. The close method is called to close any open input source. This method should not be called from application code.

Throws
Throwable