Java RandomAccessFile write()方法

java.io.RandomAccessFile.write(int b) 方法将指定字节写入到该文件。写在开始的当前文件指针。

1 语法

public void write(int b)

2 参数

b:该字节被写入。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.RandomAccessFile.write(int b)方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {

        try {
            int b1 = 15;
            int b2 = 20;

            // create a new RandomAccessFile with filename test
            RandomAccessFile raf = new RandomAccessFile("d:/test.txt", "rw");

            // write an int
            raf.write(b1);

            // set the file pointer at 0 position
            raf.seek(0);

            // print the byte
            System.out.println("" + raf.readByte());

            // write an int
            raf.write(b2);

            // set the file pointer at position 1
            raf.seek(1);

            // print the byte
            System.out.println("" + raf.readByte());

        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

假设test.txt文件内容如下:

ABCDE  

输出结果为:

15
20

热门文章

优秀文章