The java.io.DataInput.readFloat method is used to read a four-byte floating-point number from the underlying input source. It reads the next four bytes of the input stream and interprets them as a floating-point value in the IEEE 754 floating-point format. This method can be used to retrieve floating-point values that were previously written with the corresponding java.io.DataOutput.writeFloat method.
Java DataInput.readFloat - 30 examples found. These are the top rated real world Java examples of java.io.DataInput.readFloat extracted from open source projects. You can rate examples to help us improve the quality of examples.