Java.io.RandomAccessFile.writeLong()方法實例
java.io.RandomAccessFile.writeLong(long v) 方法寫入一個長的文件作爲八個字節,高字節在前。寫入從文件指針的當前位置。
聲明
以下是java.io.RandomAccessFile.writeLong()方法的聲明
public final void writeLong(long v)
參數
- v -- 要寫入一個long值。
返回值
此方法不返回任何值。
異常
- IOException -- 如果發生I/O錯誤。
例子
下面的示例演示java.io.RandomAccessFile.writeLong()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { long f = 184750874576l; // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write a long in the file raf.writeLong(f); // set the file pointer at 0 position raf.seek(0); // read long System.out.println("" + raf.readLong()); // set the file pointer at 0 position raf.seek(0); // write a long at the start raf.writeLong(20000000000l); // set the file pointer at 0 position raf.seek(0); // read long System.out.println("" + raf.readLong()); } catch (IOException ex) { ex.printStackTrace(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們編譯和運行上面的程序,這將產生以下結果:
184750874576 20000000000