Java RandomAccessFile skipBytes()方法

java.io.RandomAccessFile.skipBytes(int n) 方法尝试跳过n个字节的输入丢弃跳过的字节。此方法可能跳过某些较小的字节数,可能为零。这可能是由于任意数量的条件;到达文件的末尾n个字节被跳过之前只有一种可能。这种方法不会抛出抛出:EOFException。返回的实际跳过的字节数。如果n为负,则不跳过任何字节。

1 语法

public int skipBytes(int n)

2 参数

n:要跳过的字节数。

3 返回值

此方法返回的实际跳过的字节数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.RandomAccessFile.skipBytes(int n)方法的例子
 */
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);

            // print the string
            System.out.println("" + raf.readUTF());

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

            // attempt to skip 10 bytes and print the number of bytes skipped
            System.out.println("" + raf.skipBytes(10));

            // print what is left after skipping
            System.out.println("" + raf.readLine());

            // set the file pointer to position 8
            raf.seek(8);

            // attempt to skip 10 more bytes and print the number of bytes skipped
            System.out.println("" + raf.skipBytes(10));

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

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

ABCDE  

输出结果为:

Hello World
10
rlds an examplello W
10

热门文章

优秀文章