使用FileChannel连接文本文件

时间:2013-10-02 17:55:43

标签: java java-io

我正在尝试使用以下方法连接一组文本文件。但是,只有第一个文件显示在输出文件中。

public void concatenateFiles(List<String> fileLocations, String outputFilename){
try(FileChannel outputChannel = new FileOutputStream(outputFilename).getChannel()) {
    long position = 0;
    for(String fileLocation: fileLocations){
        try(FileChannel inputChannel = new FileInputStream(new File(fileLocation)).getChannel()){
            position += inputChannel.transferTo(position, inputChannel.size(), outputChannel);
        }
    }
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

}

你看到有什么问题吗?

1 个答案:

答案 0 :(得分:3)

更改

    position += inputChannel.transferTo(position, inputChannel.size(), outputChannel);

    position += inputChannel.transferTo(0, inputChannel.size(), outputChannel);

第一个参数是读取inputChannel的开始位置