合并 java 中的多个 csv 文件

Merging multiple csv files in java

我有 3 个 csv 文件。每个文件包含 10 列,但其中只有 1 列具有不同的值。

荷兰语

法语

英语

如图所示,只有目的地名称因语言而异。

我想要的是这样的csv文件:

如何将列放在现有列之间以及如何同时更改它们的 headers (DEST_NAME_DISPLAY --> DEST_NAME_EN)?

到目前为止,除了使用 Super csv

读取 csv 文件外,我对 csv 操作几乎没有经验

我所知道的例子

public List<City> readWithCsvMapReader(String file, String source) throws IOException, AuthenticationException, RepositoryException {
    ICsvMapReader mapReader = null;
    FileInputStream stream = new FileInputStream(file);
    InputStreamReader reader = new InputStreamReader(stream, ENCODING);
    try {
        mapReader = new CsvMapReader(reader, PREFERENCE);
        final String[] header = mapReader.getHeader(true);
        final CellProcessor[] processors = getProcessors();
        Map<String, Object> locationMap;
        while ((locationMap = mapReader.read(header, processors)) != null) {
            /*do some logic*/
        }
    } finally {
        if (mapReader != null) {
            mapReader.close();
        }
    }
}

public CellProcessor[] getProcessors() {
    final CellProcessor[] processors = new CellProcessor[]{
            new NotNull(), // COU_ID
            new NotNull(), // COU_NAME
            new NotNull(), // DEST_ID
            new NotNull(), // DEST_NAME_DISPLAY
            new Optional(), //DEST_PARENT_ID
            new NotNull(), // DEST_STATION_COUNT
            new NotNull(), // DEST_CHILD_DEST_COUNT
            new NotNull(), // DEST_FLAG_APT
            new NotNull(), // DEST_FLAG_WIN
            new NotNull(), // DEST_FLAG_DEL
    };
    return processors;
}

打开所有三个 CSV 文件。

在每次迭代中,从每个文件中读取一行,从一个文件中获取所有单元格值,从另外两个文件中获取不同单元格的值。合并到包含所有需要数据的新行中,写入此行以输出 CSV。

关闭所有文件。处理异常状态(每个文件中的行数不同,每个文件当前行的 ID 不同,...)。