Java.io.RandomAccessFile.writeFloat()方法实例
java.io.RandomAccessFile.writeFloat(float v) 使用类Float的floatToIntBits方法将float参数转换为一个int, and then writes that int value to the file as a four-byte quantity, high byte first. The write starts at the current position of the file pointer.
声明
以下是java.io.RandomAccessFile.writeFloat()方法的声明
public final void writeFloat(float v)
参数
-
v -- 要写入一个浮点值。
返回值
此方法不返回任何值。
异常
-
IOException -- 如果发生I/O错误。
例子
下面的示例演示java.io.RandomAccessFile.writeFloat()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { float f = 1847.4986f; // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write a float in the file raf.writeFloat(f); // set the file pointer at 0 position raf.seek(0); // read float System.out.println("" + raf.readFloat()); // set the file pointer at 0 position raf.seek(0); // write a float at the start raf.writeFloat(473.5645f); // set the file pointer at 0 position raf.seek(0); // read float System.out.println("" + raf.readFloat()); } catch (IOException ex) { ex.printStackTrace(); } } }
假设我们有一个文本文件c:/ test.txt,它具有以下内容。该文件将被用作输入到我们的示例程序:
ABCDE
让我们来编译和运行上面的程序,这将产生以下结果:
1847.4987 473.5645