Java.io.RandomAccessFile.writeDouble()方法實例
java.io.RandomAccessFile.writeDouble(double v) 方法雙參數使用Double類的doubleToLongBits方法轉換爲一個double值作爲文件作爲八字節數,高字節在前。寫入從文件指針的當前位置。
聲明
以下是java.io.RandomAccessFile.writeDouble()方法的聲明
public final void writeDouble(double v)
參數
- v -- a double value to be written.
返回值
此方法不返回任何值。
異常
- IOException -- 如果發生I/O錯誤。
例子
下面的示例演示java.io.RandomAccessFile.writeDouble()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { double d = 1847.4986; // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write a double in the file raf.writeDouble(d); // 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(473.5645); // 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
讓我們編譯和運行上面的程序,這將產生以下結果:
1847.4986 473.5645