1

对于任何使用 javolution 的人,请指导我如何使用它。任何代码片段都对我有很大帮助。

这是我当前的代码:

public static void mergeAllFilesJavolution2()throws FileNotFoundException, IOException {
    String fileDir = "C:\\TestData\\w12";
    File dirSrc = new File(fileDir);
    File[] list = dirSrc.listFiles();
    long start = System.currentTimeMillis();

    String outFile = fileDir + "\\..\\merged.txt";
    File file2 = new File(outFile);
    //file2.createNewFile();
    FileChannel fc2 = (new RandomAccessFile(file2, "rw")).getChannel(); 

    for(int j=0; j<list.length; j++){
        int chr;
        String srcFile = list[j].getPath();

        File file = new File(srcFile);
        FileChannel fc = (new FileInputStream(file)).getChannel(); 
        MappedByteBuffer buf = fc.map(MapMode.READ_ONLY, 0, file.length());
        UTF8ByteBufferReader inFile= new UTF8ByteBufferReader().setInput(buf);

        MappedByteBuffer buf2 = fc2.map(MapMode.READ_WRITE, file2.length(), file.length());
        UTF8ByteBufferWriter outPut= new UTF8ByteBufferWriter().setOutput(buf2);

        while((chr=inFile.read()) != -1) {
            outPut.write(chr);
        }
        outPut.close();
        inFile.close();
    }
    System.out.println(System.currentTimeMillis()-start);
}

但它给了我一个例外:

在 abc.filedivision.FileMergeTest.mergeAllFilesJavolution2(FileMergeTest.java:100) 的 sun.nio.ch.FileChannelImpl.map(FileChannelImpl.java:716) 的线程“main”java.nio.channels.NonReadableChannelException 异常。 FileMergeTest.main(FileMergeTest.java:27)

感谢任何有关正确方向的指导。

4

1 回答 1

1

我的猜测是它在这里抱怨(这就是为什么查看有错误的代码行很重要)

FileChannel fc2 = (new FileOutputStream(file2, true)).getChannel(); 
MappedByteBuffer buf2 = fc2.map(MapMode.READ_WRITE, 0, file2.length());

如果您尝试使用通道读取但不可读,则会引发此异常。

You can only open a channel in READ_WRITE mode if you use RandomAccessFile in "rw", "rws", or "rwd" modes

于 2011-06-17T10:57:15.377 回答