ホームページ  >  記事  >  Java  >  JavaのRandomAccessFileクラスでランダムにアクセスする方法

JavaのRandomAccessFileクラスでランダムにアクセスする方法

WBOY
WBOY転載
2023-04-28 09:31:061001ブラウズ

1. プロセス

(1) 入力ストリームとして機能することも、出力ストリームを希釈することもできます

(2) ファイルの先頭からの読み取りをサポートします。 write

(3) 任意の場所からの読み取りと書き込み (挿入) をサポート

(4) RandomAccessFile クラスはアクセス モードを指定する必要があります:

2。例

    public void RandomAccessFile(String src, String srcMode, String dest, String destMode) {
        RandomAccessFile accessFile = null;
        RandomAccessFile accessFile1 = null;
        try {
            accessFile = new RandomAccessFile(new File(src), srcMode);
            accessFile = new RandomAccessFile(new File(dest), destMode);
            byte[] bytes = new byte[1024];
            int length;
            while ((length = accessFile.read(bytes)) != -1) {
                accessFile1.write(bytes, 0, length);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (accessFile != null)
                try {
                    accessFile.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
 
            if (accessFile1 != null) {
                try {
                    accessFile1.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

以上がJavaのRandomAccessFileクラスでランダムにアクセスする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はyisu.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。