Java.io.DataInputStream.readFloat() Method
Advertisements
Description
The java.io.DataInputStream.readFloat() method reads four bytes of the input stream and returns a float value.
Declaration
Following is the declaration for java.io.DataInputStream.readFloat() method:
public final float readFloat()
Parameters
NA
Return Value
This method returns 4 bytes interpreted as a float value
Exception
IOException -- -- if an I/O error occurs or the stream has been closed.
EOFException -- -- if this input stream reaches the end before reading four bytes.
Example
The following example shows the usage of java.io.DataInputStream.readFloat() method.
package com.tutorialspoint;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class DataInputStreamDemo {
public static void main(String[] args) throws IOException {
InputStream is = null;
DataInputStream dis = null;
FileOutputStream fos = null;
DataOutputStream dos = null;
float[] fbuf = {65.56f,66.89f,67.98f,68.82f,69.55f,70.37f};
try{
// create file output stream
fos = new FileOutputStream("c:\\test.txt");
// create data output stream
dos = new DataOutputStream(fos);
// for each byte in the buffer
for (float f:fbuf)
{
// write float to the data output stream
dos.writeFloat(f);
}
// force bytes to the underlying stream
dos.flush();
// create file input stream
is = new FileInputStream("c:\\test.txt");
// create new data input stream
dis = new DataInputStream(is);
// read till end of the stream
while(dis.available()>0)
{
// read character
float c = dis.readFloat();
// print
System.out.print(c + " ");
}
}catch(Exception e){
// if any I/O error occurs
e.printStackTrace();
}finally{
// releases all system resources from the streams
if(is!=null)
is.close();
if(dos!=null)
is.close();
if(dis!=null)
dis.close();
if(fos!=null)
fos.close();
}
}
}
Let us compile and run the above program, this will produce the following result:
65.56 66.89 67.98 68.82 69.55 70.37