javax.imageio.stream
Interface ImageOutputStream

All Superinterfaces:
DataInput sample code for java.io.DataInput definition code for java.io.DataInput , DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput , ImageInputStream sample code for javax.imageio.stream.ImageInputStream definition code for javax.imageio.stream.ImageInputStream
All Known Implementing Classes:
FileCacheImageOutputStream sample code for javax.imageio.stream.FileCacheImageOutputStream definition code for javax.imageio.stream.FileCacheImageOutputStream , FileImageOutputStream sample code for javax.imageio.stream.FileImageOutputStream definition code for javax.imageio.stream.FileImageOutputStream , ImageOutputStreamImpl sample code for javax.imageio.stream.ImageOutputStreamImpl definition code for javax.imageio.stream.ImageOutputStreamImpl , MemoryCacheImageOutputStream sample code for javax.imageio.stream.MemoryCacheImageOutputStream definition code for javax.imageio.stream.MemoryCacheImageOutputStream

public interface ImageOutputStream
extends ImageInputStream sample code for javax.imageio.stream.ImageInputStream definition code for javax.imageio.stream.ImageInputStream , DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput

A seekable output stream interface for use by ImageWriters. Various output destinations, such as OutputStreams and Files, as well as future fast I/O destinations may be "wrapped" by a suitable implementation of this interface for use by the Image I/O API.

Unlike a standard OutputStream, ImageOutputStream extends its counterpart, ImageInputStream. Thus it is possible to read from the stream as it is being written. The same seek and flush positions apply to both reading and writing, although the semantics for dealing with a non-zero bit offset before a byte-aligned write are necessarily different from the semantics for dealing with a non-zero bit offset before a byte-aligned read. When reading bytes, any bit offset is set to 0 before the read; when writing bytes, a non-zero bit offset causes the remaining bits in the byte to be written as 0s. The byte-aligned write then starts at the next byte position.

See Also:
ImageInputStream sample code for javax.imageio.stream.ImageInputStream definition code for javax.imageio.stream.ImageInputStream

Method Summary
 void flushBefore sample code for javax.imageio.stream.ImageOutputStream.flushBefore(long) definition code for javax.imageio.stream.ImageOutputStream.flushBefore(long) (long pos)
          Flushes all data prior to the given position to the underlying destination, such as an OutputStream or File.
 void write sample code for javax.imageio.stream.ImageOutputStream.write(byte[]) definition code for javax.imageio.stream.ImageOutputStream.write(byte[]) (byte[] b)
          Writes a sequence of bytes to the stream at the current position.
 void write sample code for javax.imageio.stream.ImageOutputStream.write(byte[], int, int) definition code for javax.imageio.stream.ImageOutputStream.write(byte[], int, int) (byte[] b, int off, int len)
          Writes a sequence of bytes to the stream at the current position.
 void write sample code for javax.imageio.stream.ImageOutputStream.write(int) definition code for javax.imageio.stream.ImageOutputStream.write(int) (int b)
          Writes a single byte to the stream at the current position.
 void writeBit sample code for javax.imageio.stream.ImageOutputStream.writeBit(int) definition code for javax.imageio.stream.ImageOutputStream.writeBit(int) (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.
 void writeBits sample code for javax.imageio.stream.ImageOutputStream.writeBits(long, int) definition code for javax.imageio.stream.ImageOutputStream.writeBits(long, int) (long bits, int numBits)
          Writes a sequence of bits, given by the numBits least significant bits of the bits argument in left-to-right order, to the stream at the current bit offset within the current byte position.
 void writeBoolean sample code for javax.imageio.stream.ImageOutputStream.writeBoolean(boolean) definition code for javax.imageio.stream.ImageOutputStream.writeBoolean(boolean) (boolean v)
          Writes a boolean value to the stream.
 void writeByte sample code for javax.imageio.stream.ImageOutputStream.writeByte(int) definition code for javax.imageio.stream.ImageOutputStream.writeByte(int) (int v)
          Writes the 8 low-order bits of v to the stream.
 void writeBytes sample code for javax.imageio.stream.ImageOutputStream.writeBytes(java.lang.String) definition code for javax.imageio.stream.ImageOutputStream.writeBytes(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  s)
          Writes a string to the output stream.
 void writeChar sample code for javax.imageio.stream.ImageOutputStream.writeChar(int) definition code for javax.imageio.stream.ImageOutputStream.writeChar(int) (int v)
          This method is a synonym for writeShort sample code for javax.imageio.stream.ImageOutputStream.writeShort(int) definition code for javax.imageio.stream.ImageOutputStream.writeShort(int) .
 void writeChars sample code for javax.imageio.stream.ImageOutputStream.writeChars(char[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeChars(char[], int, int) (char[] c, int off, int len)
          Writes a sequence of chars to the stream at the current position.
 void writeChars sample code for javax.imageio.stream.ImageOutputStream.writeChars(java.lang.String) definition code for javax.imageio.stream.ImageOutputStream.writeChars(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  s)
          Writes a string to the output stream.
 void writeDouble sample code for javax.imageio.stream.ImageOutputStream.writeDouble(double) definition code for javax.imageio.stream.ImageOutputStream.writeDouble(double) (double v)
          Writes a double value, which is comprised of four bytes, to the output stream.
 void writeDoubles sample code for javax.imageio.stream.ImageOutputStream.writeDoubles(double[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeDoubles(double[], int, int) (double[] d, int off, int len)
          Writes a sequence of doubles to the stream at the current position.
 void writeFloat sample code for javax.imageio.stream.ImageOutputStream.writeFloat(float) definition code for javax.imageio.stream.ImageOutputStream.writeFloat(float) (float v)
          Writes a float value, which is comprised of four bytes, to the output stream.
 void writeFloats sample code for javax.imageio.stream.ImageOutputStream.writeFloats(float[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeFloats(float[], int, int) (float[] f, int off, int len)
          Writes a sequence of floats to the stream at the current position.
 void writeInt sample code for javax.imageio.stream.ImageOutputStream.writeInt(int) definition code for javax.imageio.stream.ImageOutputStream.writeInt(int) (int v)
          Writes the 32 bits of v to the stream.
 void writeInts sample code for javax.imageio.stream.ImageOutputStream.writeInts(int[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeInts(int[], int, int) (int[] i, int off, int len)
          Writes a sequence of ints to the stream at the current position.
 void writeLong sample code for javax.imageio.stream.ImageOutputStream.writeLong(long) definition code for javax.imageio.stream.ImageOutputStream.writeLong(long) (long v)
          Writes the 64 bits of v to the stream.
 void writeLongs sample code for javax.imageio.stream.ImageOutputStream.writeLongs(long[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeLongs(long[], int, int) (long[] l, int off, int len)
          Writes a sequence of longs to the stream at the current position.
 void writeShort sample code for javax.imageio.stream.ImageOutputStream.writeShort(int) definition code for javax.imageio.stream.ImageOutputStream.writeShort(int) (int v)
          Writes the 16 low-order bits of v to the stream.
 void writeShorts sample code for javax.imageio.stream.ImageOutputStream.writeShorts(short[], int, int) definition code for javax.imageio.stream.ImageOutputStream.writeShorts(short[], int, int) (short[] s, int off, int len)
          Writes a sequence of shorts to the stream at the current position.
 void writeUTF sample code for javax.imageio.stream.ImageOutputStream.writeUTF(java.lang.String) definition code for javax.imageio.stream.ImageOutputStream.writeUTF(java.lang.String) (String sample code for java.lang.String definition code for java.lang.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 string s.
 
Methods inherited from interface javax.imageio.stream.ImageInputStream sample code for javax.imageio.stream.ImageInputStream definition code for javax.imageio.stream.ImageInputStream
close sample code for javax.imageio.stream.ImageInputStream.close() definition code for javax.imageio.stream.ImageInputStream.close() , flush sample code for javax.imageio.stream.ImageInputStream.flush() definition code for javax.imageio.stream.ImageInputStream.flush() , getBitOffset sample code for javax.imageio.stream.ImageInputStream.getBitOffset() definition code for javax.imageio.stream.ImageInputStream.getBitOffset() , getByteOrder sample code for javax.imageio.stream.ImageInputStream.getByteOrder() definition code for javax.imageio.stream.ImageInputStream.getByteOrder() , getFlushedPosition sample code for javax.imageio.stream.ImageInputStream.getFlushedPosition() definition code for javax.imageio.stream.ImageInputStream.getFlushedPosition() , getStreamPosition sample code for javax.imageio.stream.ImageInputStream.getStreamPosition() definition code for javax.imageio.stream.ImageInputStream.getStreamPosition() , isCached sample code for javax.imageio.stream.ImageInputStream.isCached() definition code for javax.imageio.stream.ImageInputStream.isCached() , isCachedFile sample code for javax.imageio.stream.ImageInputStream.isCachedFile() definition code for javax.imageio.stream.ImageInputStream.isCachedFile() , isCachedMemory sample code for javax.imageio.stream.ImageInputStream.isCachedMemory() definition code for javax.imageio.stream.ImageInputStream.isCachedMemory() , length sample code for javax.imageio.stream.ImageInputStream.length() definition code for javax.imageio.stream.ImageInputStream.length() , mark sample code for javax.imageio.stream.ImageInputStream.mark() definition code for javax.imageio.stream.ImageInputStream.mark() , read sample code for javax.imageio.stream.ImageInputStream.read() definition code for javax.imageio.stream.ImageInputStream.read() , read sample code for javax.imageio.stream.ImageInputStream.read(byte[]) definition code for javax.imageio.stream.ImageInputStream.read(byte[]) , read sample code for javax.imageio.stream.ImageInputStream.read(byte[], int, int) definition code for javax.imageio.stream.ImageInputStream.read(byte[], int, int) , readBit sample code for javax.imageio.stream.ImageInputStream.readBit() definition code for javax.imageio.stream.ImageInputStream.readBit() , readBits sample code for javax.imageio.stream.ImageInputStream.readBits(int) definition code for javax.imageio.stream.ImageInputStream.readBits(int) , readBoolean sample code for javax.imageio.stream.ImageInputStream.readBoolean() definition code for javax.imageio.stream.ImageInputStream.readBoolean() , readByte sample code for javax.imageio.stream.ImageInputStream.readByte() definition code for javax.imageio.stream.ImageInputStream.readByte() , readBytes sample code for javax.imageio.stream.ImageInputStream.readBytes(javax.imageio.stream.IIOByteBuffer, int) definition code for javax.imageio.stream.ImageInputStream.readBytes(javax.imageio.stream.IIOByteBuffer, int) , readChar sample code for javax.imageio.stream.ImageInputStream.readChar() definition code for javax.imageio.stream.ImageInputStream.readChar() , readDouble sample code for javax.imageio.stream.ImageInputStream.readDouble() definition code for javax.imageio.stream.ImageInputStream.readDouble() , readFloat sample code for javax.imageio.stream.ImageInputStream.readFloat() definition code for javax.imageio.stream.ImageInputStream.readFloat() , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(byte[]) definition code for javax.imageio.stream.ImageInputStream.readFully(byte[]) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(byte[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(byte[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(char[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(char[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(double[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(double[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(float[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(float[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(int[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(int[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(long[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(long[], int, int) , readFully sample code for javax.imageio.stream.ImageInputStream.readFully(short[], int, int) definition code for javax.imageio.stream.ImageInputStream.readFully(short[], int, int) , readInt sample code for javax.imageio.stream.ImageInputStream.readInt() definition code for javax.imageio.stream.ImageInputStream.readInt() , readLine sample code for javax.imageio.stream.ImageInputStream.readLine() definition code for javax.imageio.stream.ImageInputStream.readLine() , readLong sample code for javax.imageio.stream.ImageInputStream.readLong() definition code for javax.imageio.stream.ImageInputStream.readLong() , readShort sample code for javax.imageio.stream.ImageInputStream.readShort() definition code for javax.imageio.stream.ImageInputStream.readShort() , readUnsignedByte sample code for javax.imageio.stream.ImageInputStream.readUnsignedByte() definition code for javax.imageio.stream.ImageInputStream.readUnsignedByte() , readUnsignedInt sample code for javax.imageio.stream.ImageInputStream.readUnsignedInt() definition code for javax.imageio.stream.ImageInputStream.readUnsignedInt() , readUnsignedShort sample code for javax.imageio.stream.ImageInputStream.readUnsignedShort() definition code for javax.imageio.stream.ImageInputStream.readUnsignedShort() , readUTF sample code for javax.imageio.stream.ImageInputStream.readUTF() definition code for javax.imageio.stream.ImageInputStream.readUTF() , reset sample code for javax.imageio.stream.ImageInputStream.reset() definition code for javax.imageio.stream.ImageInputStream.reset() , seek sample code for javax.imageio.stream.ImageInputStream.seek(long) definition code for javax.imageio.stream.ImageInputStream.seek(long) , setBitOffset sample code for javax.imageio.stream.ImageInputStream.setBitOffset(int) definition code for javax.imageio.stream.ImageInputStream.setBitOffset(int) , setByteOrder sample code for javax.imageio.stream.ImageInputStream.setByteOrder(java.nio.ByteOrder) definition code for javax.imageio.stream.ImageInputStream.setByteOrder(java.nio.ByteOrder) , skipBytes sample code for javax.imageio.stream.ImageInputStream.skipBytes(int) definition code for javax.imageio.stream.ImageInputStream.skipBytes(int) , skipBytes sample code for javax.imageio.stream.ImageInputStream.skipBytes(long) definition code for javax.imageio.stream.ImageInputStream.skipBytes(long)
 

Method Detail

write sample code for javax.imageio.stream.ImageOutputStream.write(int) definition code for javax.imageio.stream.ImageOutputStream.write(int)

void write(int b)
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
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 sample code for javax.imageio.stream.ImageOutputStreamImpl.flushBits() definition code for javax.imageio.stream.ImageOutputStreamImpl.flushBits() method of ImageOutputStreamImpl sample code for javax.imageio.stream.ImageOutputStreamImpl definition code for javax.imageio.stream.ImageOutputStreamImpl to guarantee this.

Specified by:
write sample code for java.io.DataOutput.write(int) definition code for java.io.DataOutput.write(int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
b - an int whose lower 8 bits are to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

write sample code for javax.imageio.stream.ImageOutputStream.write(byte[]) definition code for javax.imageio.stream.ImageOutputStream.write(byte[])

void write(byte[] b)
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes a sequence of bytes to the stream at the current position. If b.length is 0, nothing is written. The byte b[0] is written first, then the byte b[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:
write sample code for java.io.DataOutput.write(byte[]) definition code for java.io.DataOutput.write(byte[]) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
b - an array of bytes to be written.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if b is null.
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

write sample code for javax.imageio.stream.ImageOutputStream.write(byte[], int, int) definition code for javax.imageio.stream.ImageOutputStream.write(byte[], int, int)

void write(byte[] b,
           int off,
           int len)
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
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 sample code for javax.imageio.stream.ImageOutputStreamImpl.flushBits() definition code for javax.imageio.stream.ImageOutputStreamImpl.flushBits() method of ImageOutputStreamImpl sample code for javax.imageio.stream.ImageOutputStreamImpl definition code for javax.imageio.stream.ImageOutputStreamImpl to guarantee this.

Specified by:
write sample code for java.io.DataOutput.write(byte[], int, int) definition code for java.io.DataOutput.write(byte[], int, int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
b - an array of bytes to be written.
off - the start offset in the data.
len - the number of bytes to write.
Throws:
IndexOutOfBoundsException sample code for java.lang.IndexOutOfBoundsException definition code for java.lang.IndexOutOfBoundsException - if off is negative, len is negative, or off + len is greater than b.length.
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if b is null.
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeBoolean sample code for javax.imageio.stream.ImageOutputStream.writeBoolean(boolean) definition code for javax.imageio.stream.ImageOutputStream.writeBoolean(boolean)

void writeBoolean(boolean v)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes a boolean value to the stream. If v is true, the value (byte)1 is written; if v is false, the value (byte)0 is 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:
writeBoolean sample code for java.io.DataOutput.writeBoolean(boolean) definition code for java.io.DataOutput.writeBoolean(boolean) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - the boolean to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeByte sample code for javax.imageio.stream.ImageOutputStream.writeByte(int) definition code for javax.imageio.stream.ImageOutputStream.writeByte(int)

void writeByte(int v)
               throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes the 8 low-order bits of v to the stream. The 24 high-order bits of v are ignored. (This means that writeByte does exactly the same thing as write for 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:
writeByte sample code for java.io.DataOutput.writeByte(int) definition code for java.io.DataOutput.writeByte(int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - an int containing the byte value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeShort sample code for javax.imageio.stream.ImageOutputStream.writeShort(int) definition code for javax.imageio.stream.ImageOutputStream.writeShort(int)

void writeShort(int v)
                throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes the 16 low-order bits of v to the stream. The 16 high-order bits of v are 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:
writeShort sample code for java.io.DataOutput.writeShort(int) definition code for java.io.DataOutput.writeShort(int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - an int containing the short value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeChar sample code for javax.imageio.stream.ImageOutputStream.writeChar(int) definition code for javax.imageio.stream.ImageOutputStream.writeChar(int)

void writeChar(int v)
               throws IOException sample code for java.io.IOException definition code for java.io.IOException 
This method is a synonym for writeShort sample code for javax.imageio.stream.ImageOutputStream.writeShort(int) definition code for javax.imageio.stream.ImageOutputStream.writeShort(int) .

Specified by:
writeChar sample code for java.io.DataOutput.writeChar(int) definition code for java.io.DataOutput.writeChar(int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - an int containing the char (unsigned short) value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
writeShort(int) sample code for javax.imageio.stream.ImageOutputStream.writeShort(int) definition code for javax.imageio.stream.ImageOutputStream.writeShort(int)

writeInt sample code for javax.imageio.stream.ImageOutputStream.writeInt(int) definition code for javax.imageio.stream.ImageOutputStream.writeInt(int)

void writeInt(int v)
              throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes the 32 bits of v to 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:
writeInt sample code for java.io.DataOutput.writeInt(int) definition code for java.io.DataOutput.writeInt(int) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - an int containing the value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeLong sample code for javax.imageio.stream.ImageOutputStream.writeLong(long) definition code for javax.imageio.stream.ImageOutputStream.writeLong(long)

void writeLong(long v)
               throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes the 64 bits of v to 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:
writeLong sample code for java.io.DataOutput.writeLong(long) definition code for java.io.DataOutput.writeLong(long) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - a long containing the value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeFloat sample code for javax.imageio.stream.ImageOutputStream.writeFloat(float) definition code for javax.imageio.stream.ImageOutputStream.writeFloat(float)

void writeFloat(float v)
                throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes a float value, which is comprised of four bytes, to the output stream. It does this as if it first converts this float value to an int in exactly the manner of the Float.floatToIntBits method and then writes the int value in exactly the manner of the writeInt method.

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:
writeFloat sample code for java.io.DataOutput.writeFloat(float) definition code for java.io.DataOutput.writeFloat(float) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - a float containing the value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeDouble sample code for javax.imageio.stream.ImageOutputStream.writeDouble(double) definition code for javax.imageio.stream.ImageOutputStream.writeDouble(double)

void writeDouble(double v)
                 throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes a double value, which is comprised of four bytes, to the output stream. It does this as if it first converts this double value to an long in exactly the manner of the Double.doubleToLongBits method and then writes the long value in exactly the manner of the writeLong method.

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:
writeDouble sample code for java.io.DataOutput.writeDouble(double) definition code for java.io.DataOutput.writeDouble(double) in interface DataOutput sample code for java.io.DataOutput definition code for java.io.DataOutput
Parameters:
v - a double containing the value to be written.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.

writeBytes sample code for javax.imageio.stream.ImageOutputStream.writeBytes(java.lang.String) definition code for javax.imageio.stream.ImageOutputStream.writeBytes(java.lang.String)

void writeBytes(String sample code for java.lang.String definition code for java.lang.String  s)
                throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes a string to the output stream. For every character in the string s, taken in order, one byte is written to the output stream. If s is null, a NullPointerException is thrown.

If s.length is zero, then no bytes are written. Otherwise, the character s[0] is written first, then s[1], and so on; the last character written is s[s.length-1]. For each character, one byte is written, the low-order byte, in exactly the manner of the writeByte method. 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:
writeBytes sample code for java.io.DataOutput.writeBytes(java.lang.String) definition code for java.io.DataOutput.writeBytes(java.lang.String)