Java:Javolution:如何使用UTF8ByteBufferWriter和MappedByteBuffer?

时间:2011-06-17 10:48:38

标签: java javolution

对于使用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);
}

但它给了我一个例外:

  

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

对正确方向的任何指导表示赞赏。

1 个答案:

答案 0 :(得分:1)

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

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

如果您尝试使用该通道进行读取但不可读,则会抛出此异常。

如果在“rw”,“rws”或“rwd”模式下使用RandomAccessFile,则只能以READ_WRITE模式打开频道