位置:首頁 > Java技術 > Java.io包 > Java.io.RandomAccessFile.writeFloat()方法實例

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