- java.lang.Object
- 
- javax.imageio.stream.ImageInputStreamImpl
- 
- javax.imageio.stream.ImageOutputStreamImpl
 
 
- 
- All Implemented Interfaces:
- Closeable,- DataInput,- DataOutput,- AutoCloseable,- ImageInputStream,- ImageOutputStream
 - Direct Known Subclasses:
- FileCacheImageOutputStream,- FileImageOutputStream,- MemoryCacheImageOutputStream
 
 
 public abstract class ImageOutputStreamImpl extends ImageInputStreamImpl implements ImageOutputStream An abstract class implementing theImageOutputStreaminterface. This class is designed to reduce the number of methods that must be implemented by subclasses.
- 
- 
Field Summary- 
Fields inherited from class javax.imageio.stream.ImageInputStreamImplbitOffset, byteOrder, flushedPos, streamPos
 
- 
 - 
Constructor SummaryConstructors Constructor Description ImageOutputStreamImpl()Constructs anImageOutputStreamImpl.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidflushBits()If the bit offset is non-zero, forces the remaining bits in the current byte to 0 and advances the stream position by one.voidwrite(byte[] b)Writes a sequence of bytes to the stream at the current position.abstract voidwrite(byte[] b, int off, int len)Writes a sequence of bytes to the stream at the current position.abstract voidwrite(int b)Writes a single byte to the stream at the current position.voidwriteBit(int bit)Writes a single bit, given by the least significant bit of the argument, to the stream at the current bit offset within the current byte position.voidwriteBits(long bits, int numBits)Writes a sequence of bits, given by thenumBitsleast significant bits of thebitsargument in left-to-right order, to the stream at the current bit offset within the current byte position.voidwriteBoolean(boolean v)Writes abooleanvalue to the stream.voidwriteByte(int v)Writes the 8 low-order bits ofvto the stream.voidwriteBytes(String s)Writes a string to the output stream.voidwriteChar(int v)This method is a synonym forwriteShort.voidwriteChars(char[] c, int off, int len)Writes a sequence of chars to the stream at the current position.voidwriteChars(String s)Writes a string to the output stream.voidwriteDouble(double v)Writes adoublevalue, which is comprised of four bytes, to the output stream.voidwriteDoubles(double[] d, int off, int len)Writes a sequence of doubles to the stream at the current position.voidwriteFloat(float v)Writes afloatvalue, which is comprised of four bytes, to the output stream.voidwriteFloats(float[] f, int off, int len)Writes a sequence of floats to the stream at the current position.voidwriteInt(int v)Writes the 32 bits ofvto the stream.voidwriteInts(int[] i, int off, int len)Writes a sequence of ints to the stream at the current position.voidwriteLong(long v)Writes the 64 bits ofvto the stream.voidwriteLongs(long[] l, int off, int len)Writes a sequence of longs to the stream at the current position.voidwriteShort(int v)Writes the 16 low-order bits ofvto the stream.voidwriteShorts(short[] s, int off, int len)Writes a sequence of shorts to the stream at the current position.voidwriteUTF(String s)Writes two bytes of length information to the output stream in network byte order, followed by the modified UTF-8 representation of every character in the strings.- 
Methods inherited from interface javax.imageio.stream.ImageInputStreamclose, flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, isCached, isCachedFile, isCachedMemory, 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, seek, setBitOffset, setByteOrder, skipBytes, skipBytes
 - 
Methods inherited from class javax.imageio.stream.ImageInputStreamImplcheckClosed, close, finalize, flush, flushBefore, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, isCached, isCachedFile, isCachedMemory, 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, seek, setBitOffset, setByteOrder, skipBytes, skipBytes
 - 
Methods inherited from interface javax.imageio.stream.ImageOutputStreamflushBefore
 
- 
 
- 
- 
- 
Method Detail- 
writepublic abstract void write(int b) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a single byte to the stream at the current position. The 24 high-order bits ofbare 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 flushBitsmethod ofImageOutputStreamImplto guarantee this.- Specified by:
- writein interface- DataOutput
- Specified by:
- writein interface- ImageOutputStream
- Parameters:
- b- an- intwhose lower 8 bits are to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writepublic void write(byte[] b) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of bytes to the stream at the current position. Ifb.lengthis 0, nothing is written. The byteb[0]is written first, then the byteb[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. - Specified by:
- writein interface- DataOutput
- Specified by:
- writein interface- ImageOutputStream
- Parameters:
- b- an array of- bytes to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writepublic abstract void write(byte[] b, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of bytes to the stream at the current position. Iflenis 0, nothing is written. The byteb[off]is written first, then the byteb[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 flushBitsmethod ofImageOutputStreamImplto guarantee this.- Specified by:
- writein interface- DataOutput
- Specified by:
- writein interface- ImageOutputStream
- 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- if an I/O error occurs.
 
 - 
writeBooleanpublic void writeBoolean(boolean v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites abooleanvalue to the stream. Ifvis true, the value(byte)1is written; ifvis false, the value(byte)0is written.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. - Specified by:
- writeBooleanin interface- DataOutput
- Specified by:
- writeBooleanin interface- ImageOutputStream
- Parameters:
- v- the- booleanto be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeBytepublic void writeByte(int v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites the 8 low-order bits ofvto the stream. The 24 high-order bits ofvare ignored. (This means thatwriteBytedoes exactly the same thing aswritefor an integer argument.)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. - Specified by:
- writeBytein interface- DataOutput
- Specified by:
- writeBytein interface- ImageOutputStream
- Parameters:
- v- an- intcontaining the byte value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeShortpublic void writeShort(int v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites the 16 low-order bits ofvto the stream. The 16 high-order bits ofvare ignored. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 8) & 0xff) (byte)(v & 0xff) Otherwise, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff) 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. - Specified by:
- writeShortin interface- DataOutput
- Specified by:
- writeShortin interface- ImageOutputStream
- Parameters:
- v- an- intcontaining the short value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeCharpublic void writeChar(int v) throws IOExceptionDescription copied from interface:ImageOutputStreamThis method is a synonym forwriteShort.- Specified by:
- writeCharin interface- DataOutput
- Specified by:
- writeCharin interface- ImageOutputStream
- Parameters:
- v- an- intcontaining the char (unsigned short) value to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- ImageOutputStream.writeShort(int)
 
 - 
writeIntpublic void writeInt(int v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites the 32 bits ofvto the stream. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 24) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 8) & 0xff) (byte)(v & 0xff) Otheriwse, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 24) & 0xff) 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. - Specified by:
- writeIntin interface- DataOutput
- Specified by:
- writeIntin interface- ImageOutputStream
- Parameters:
- v- an- intcontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeLongpublic void writeLong(long v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites the 64 bits ofvto the stream. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 56) & 0xff) (byte)((v >> 48) & 0xff) (byte)((v >> 40) & 0xff) (byte)((v >> 32) & 0xff) (byte)((v >> 24) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 8) & 0xff) (byte)(v & 0xff) Otherwise, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 24) & 0xff) (byte)((v >> 32) & 0xff) (byte)((v >> 40) & 0xff) (byte)((v >> 48) & 0xff) (byte)((v >> 56) & 0xff) 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. - Specified by:
- writeLongin interface- DataOutput
- Specified by:
- writeLongin interface- ImageOutputStream
- Parameters:
- v- a- longcontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeFloatpublic void writeFloat(float v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites afloatvalue, which is comprised of four bytes, to the output stream. It does this as if it first converts thisfloatvalue to anintin exactly the manner of theFloat.floatToIntBitsmethod and then writes the int value in exactly the manner of thewriteIntmethod.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. - Specified by:
- writeFloatin interface- DataOutput
- Specified by:
- writeFloatin interface- ImageOutputStream
- Parameters:
- v- a- floatcontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeDoublepublic void writeDouble(double v) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites adoublevalue, which is comprised of four bytes, to the output stream. It does this as if it first converts thisdoublevalue to alongin exactly the manner of theDouble.doubleToLongBitsmethod and then writes the long value in exactly the manner of thewriteLongmethod.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. - Specified by:
- writeDoublein interface- DataOutput
- Specified by:
- writeDoublein interface- ImageOutputStream
- Parameters:
- v- a- doublecontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeBytespublic void writeBytes(String s) throws IOException Description copied from interface:ImageOutputStreamWrites a string to the output stream. For every character in the strings, taken in order, one byte is written to the output stream. Ifsisnull, aNullPointerExceptionis thrown.If s.lengthis zero, then no bytes are written. Otherwise, the characters[0]is written first, thens[1], and so on; the last character written iss[s.length-1]. For each character, one byte is written, the low-order byte, in exactly the manner of thewriteBytemethod. The high-order eight bits of each character in the string 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. - Specified by:
- writeBytesin interface- DataOutput
- Specified by:
- writeBytesin interface- ImageOutputStream
- Parameters:
- s- a- Stringcontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeCharspublic void writeChars(String s) throws IOException Description copied from interface:ImageOutputStreamWrites a string to the output stream. For every character in the strings, taken in order, two bytes are written to the output stream, ordered according to the current byte order setting. If network byte order is being used, the high-order byte is written first; the order is reversed otherwise. Ifsisnull, aNullPointerExceptionis thrown.If s.lengthis zero, then no bytes are written. Otherwise, the characters[0]is written first, thens[1], and so on; the last character written iss[s.length-1].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. - Specified by:
- writeCharsin interface- DataOutput
- Specified by:
- writeCharsin interface- ImageOutputStream
- Parameters:
- s- a- Stringcontaining the value to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeUTFpublic void writeUTF(String s) throws IOException Description copied from interface:ImageOutputStreamWrites two bytes of length information to the output stream in network byte order, followed by the modified UTF-8 representation of every character in the strings. Ifsisnull, aNullPointerExceptionis thrown. Each character in the stringsis converted to a group of one, two, or three bytes, depending on the value of the character.If a character cis in the range\u0001through\u007f, it is represented by one byte:(byte)c If a character cis\u0000or is in the range\u0080through\u07ff, then it is represented by two bytes, to be written in the order shown:(byte)(0xc0 | (0x1f & (c >> 6))) (byte)(0x80 | (0x3f & c))If a character cis in the range\u0800throughuffff, then it is represented by three bytes, to be written in the order shown:(byte)(0xe0 | (0x0f & (c >> 12))) (byte)(0x80 | (0x3f & (c >> 6))) (byte)(0x80 | (0x3f & c))First, the total number of bytes needed to represent all the characters of sis calculated. If this number is larger than65535, then aUTFDataFormatExceptionis thrown. Otherwise, this length is written to the output stream in exactly the manner of thewriteShortmethod; after this, the one-, two-, or three-byte representation of each character in the stringsis written.The current byte order setting is 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. Note: This method should not be used in the implementation of image formats that use standard UTF-8, because the modified UTF-8 used here is incompatible with standard UTF-8. - Specified by:
- writeUTFin interface- DataOutput
- Specified by:
- writeUTFin interface- ImageOutputStream
- Parameters:
- s- a- Stringcontaining the value to be written.
- Throws:
- UTFDataFormatException- if the modified UTF-8 representation of- srequires more than 65536 bytes.
- IOException- if an I/O error occurs.
 
 - 
writeShortspublic void writeShorts(short[] s, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of shorts to the stream at the current position. Iflenis 0, nothing is written. The shorts[off]is written first, then the shorts[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeShortsin interface- ImageOutputStream
- Parameters:
- s- an array of- shorts to be written.
- off- the start offset in the data.
- len- the number of- shorts to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeCharspublic void writeChars(char[] c, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of chars to the stream at the current position. Iflenis 0, nothing is written. The charc[off]is written first, then the charc[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeCharsin interface- ImageOutputStream
- Parameters:
- c- an array of- chars to be written.
- off- the start offset in the data.
- len- the number of- chars to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeIntspublic void writeInts(int[] i, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of ints to the stream at the current position. Iflenis 0, nothing is written. The inti[off]is written first, then the inti[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeIntsin interface- ImageOutputStream
- Parameters:
- i- an array of- ints to be written.
- off- the start offset in the data.
- len- the number of- ints to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeLongspublic void writeLongs(long[] l, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of longs to the stream at the current position. Iflenis 0, nothing is written. The longl[off]is written first, then the longl[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeLongsin interface- ImageOutputStream
- Parameters:
- l- an array of- longs to be written.
- off- the start offset in the data.
- len- the number of- longs to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeFloatspublic void writeFloats(float[] f, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of floats to the stream at the current position. Iflenis 0, nothing is written. The floatf[off]is written first, then the floatf[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeFloatsin interface- ImageOutputStream
- Parameters:
- f- an array of- floats to be written.
- off- the start offset in the data.
- len- the number of- floats to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeDoublespublic void writeDoubles(double[] d, int off, int len) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of doubles to the stream at the current position. Iflenis 0, nothing is written. The doubled[off]is written first, then the doubled[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.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. - Specified by:
- writeDoublesin interface- ImageOutputStream
- Parameters:
- d- an array of- doubless to be written.
- off- the start offset in the data.
- len- the number of- doubles to write.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeBitpublic void writeBit(int bit) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a single bit, given by the least significant bit of the argument, to the stream at the current bit offset within the current byte position. The upper 31 bits of the argument are ignored. The given bit replaces the previous bit at that position. The bit offset is advanced by one and reduced modulo 8.If any bits of a particular byte have never been set at the time the byte is flushed to the destination, those bits will be set to 0 automatically. - Specified by:
- writeBitin interface- ImageOutputStream
- Parameters:
- bit- an- intwhose least significant bit is to be written to the stream.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
writeBitspublic void writeBits(long bits, int numBits) throws IOExceptionDescription copied from interface:ImageOutputStreamWrites a sequence of bits, given by thenumBitsleast significant bits of thebitsargument in left-to-right order, to the stream at the current bit offset within the current byte position. The upper64 - numBitsbits of the argument are ignored. The bit offset is advanced bynumBitsand reduced modulo 8. Note that a bit offset of 0 always indicates the most-significant bit of the byte, and bytes of bits are written out in sequence as they are encountered. Thus bit writes are always effectively in network byte order. The actual stream byte order setting is ignored.Bit data may be accumulated in memory indefinitely, until flushBeforeis called. At that time, all bit data prior to the flushed position will be written.If any bits of a particular byte have never been set at the time the byte is flushed to the destination, those bits will be set to 0 automatically. - Specified by:
- writeBitsin interface- ImageOutputStream
- Parameters:
- bits- a- longcontaining the bits to be written, starting with the bit in position- numBits - 1down to the least significant bit.
- numBits- an- intbetween 0 and 64, inclusive.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
flushBitsprotected final void flushBits() throws IOExceptionIf the bit offset is non-zero, forces the remaining bits in the current byte to 0 and advances the stream position by one. This method should be called by subclasses at the beginning of thewrite(int)andwrite(byte[], int, int)methods.- Throws:
- IOException- if an I/O error occurs.
 
 
- 
 
-