Java RandomAccessFile read()方法

java.io.RandomAccessFile.read() 方法读取数据从该文件一个字节。该字节的范围是0-255(0×00-0x0FF的)返回一个整数。

1 语法

public int read()

2 参数

3 返回值

此方法返回下一个数据字节,或如果该文件的末尾已到达返回-1。

4 示例 

package com.yiidian;

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

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

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

            // write something in the file
            raf.writeUTF("Hello World");

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

            // read the first byte and print it
            System.out.println("" + raf.read());

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

            // read the first byte and print it
            System.out.println("" + raf.read());
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

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

ABCDE

输出结果为:

0
108

热门文章

优秀文章