Overview | Methods | This Package | All Packages
Writes the contents of the specified float array to this stream.
Syntax
public void writeFloats( float[] buffer )
public void writeFloats( float[] buffer, int index, int count )
Parameters
buffer
The float array containing the data to write.
index
The starting index in the array.
count
The number of floats to write.
Exceptions
IOException thrown if an I/O error occurs or if the stream does not support writing.
Remarks
The number of bytes written to the stream is buffer.length * 4. The current position is advanced by count * 4 bytes.
See Also readFloats