1

我正在使用 MemoryMapped 缓冲区读取文件。最初,我获取通道大小并使用相同的大小将文件映射到内存,这里初始位置为 0,因为我想从头开始映射文件。现在向该文件添加了另外 400KB 的数据,现在我想单独映射那 400kb。但是我的代码有问题,我无法弄清楚,我得到了这个

260java.io.IOException: Channel not open for writing - cannot extend file to required size
at sun.nio.ch.FileChannelImpl.map(FileChannelImpl.java:812)
at trailreader.main(trailreader.java:55

所以这是我的代码

    BufferedWriter bw;      

    FileInputStream fileinput = null;

    try {
        fileinput = new FileInputStream("simple.csv");
    } catch (FileNotFoundException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }


    FileChannel channel = fileinput.getChannel();




    MappedByteBuffer ByteBuffer;

    try {
        ByteBuffer = fileinput.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    /*
    * Add some 400 bytes to simple.csv. outside of this program...
    */

                 //following line throw exception.
    try {
        ByteBuffer = fileinput.getChannel().map(FileChannel.MapMode.READ_ONLY, channel.size(), 400);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

因此,在我的代码中,我试图重新读取已添加但无法正常工作的附加数据,我知道问题是 channel.size(),但我无法纠正它。

4

1 回答 1

1

channel.size()始终是文件的当前结尾。您正在尝试将 400 个字节映射过去。它不在那里。你需要类似的东西:

ByteBuffer = fileinput.getChannel().map(FileChannel.MapMode.READ_ONLY, channel.size()-400, 400);
于 2012-09-20T09:00:33.163 回答