Java.io.RandomAccessFile.readDouble()方法實例
java.io.RandomAccessFile.readDouble() 方法讀取這個文件一個double值。此方法讀取一個long值,並從當前文件指針,就好像readLong方法,然後用longBitsToDouble方法將轉換爲double。
聲明
以下是java.io.RandomAccessFile.readDouble()方法的聲明
public final double readDouble()
參數
- NA
返回值
此方法返回這個文件的下八個字節,解釋爲一個double。
異常
IOException -- 如果發生I/ O錯誤。如果已經達到文件結束不會拋出。
EOFException -- 如果這個文件到達末尾之前讀取8個字節。
例子
下面的示例演示java.io.RandomAccessFile.readDouble()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { double d = 1.5987475; // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/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(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們來編譯和運行上面的程序,這將產生以下結果:
765.497634 1.5987475