Java RandomAccessFile readDouble()方法

java.io.RandomAccessFile.readDouble() 方法读取这个文件一个double值。此方法读取一个long值,并从当前文件指针,就好像readLong方法,然后用longBitsToDouble方法将转换为double。

1 语法

public final double readDouble()

2 参数

3 返回值

此方法返回这个文件的下八个字节,解释为一个double。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.RandomAccessFile.readDouble()方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {

        try {
            double d = 1.5987475;

            // create a new RandomAccessFile with filename test
            RandomAccessFile raf = new RandomAccessFile("d:/test.txt", "rw");

            // write something in the file
            raf.writeDouble(765.497634);

            // set the file pointer at 0 position
            raf.seek(0);

            // read double
            System.out.println("" + raf.readDouble());

            // set the file pointer at 0 position
            raf.seek(0);

            // write a double at the start
            raf.writeDouble(d);

            // set the file pointer at 0 position
            raf.seek(0);

            // read double
            System.out.println("" + raf.readDouble());
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

假设test.txt文件内容如下:

ABCDE  

输出结果为:

765.497634
1.5987475

热门文章

优秀文章