Java RandomAccessFile writeFloat()方法
java.io.RandomAccessFile.writeFloat(float v) 使用类Float的floatToIntBits方法将float参数转换为一个int,然后将该int值写入到该文件作为一个四字节数量,高字节。写入从文件指针的当前位置开始。
1 语法
public final void writeFloat(float v)
2 参数
v:要写入的浮点值。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.RandomAccessFile.writeFloat(float v)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
try {
float f = 1847.4986f;
// create a new RandomAccessFile with filename test
RandomAccessFile raf = new RandomAccessFile("d:/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();
}
}
}
假设test.txt文件内容如下:
ABCDE
输出结果为:
1847.4987
473.5645
热门文章
优秀文章