Java DataOutputStream writeFloat()方法

java.io.DataOuputStream.writeFloat(float v) 用于向输出流写入一个float。

1 语法

public final void writeFloat(float v)

2 参数

v:要写入输出流的float。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.DataOuputStream.writeFloat(float v)方法的例子
 */
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 Demo {
    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("d:\\test.txt");

            // create data output stream
            dos = new DataOutputStream(fos);

            // for each byte in the buffer
            for (float f:fbuf) {
                // write float to the dos
                dos.writeFloat(f);
            }

            // force bytes to the underlying stream
            dos.flush();

            // create file input stream
            is = new FileInputStream("d:\\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();
        }
    }
}

输出结果为:

65.56 66.89 67.98 68.82 69.55 70.37

热门文章

优秀文章