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