gpt4 book ai didi

java - 使用 CSVParser 和 Formatter 返回记录列表

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:47:28 26 4
gpt4 key购买 nike

我正在使用 compile group: 'org.apache.commons', name: 'commons-csv', version: '1.5'

我原以为下面的代码会返回 3 个项目,但它只返回 1 项。我怎样才能让它返回 3 个项目?

CSVFormat format = CSVFormat.DEFAULT;
return CSVParser.parse(format.format(new Object[]{"cool", "nice", 5}), format).getRecords()

我知道它返回一项,因为只有一条记录。那么我怎样才能将记录值作为列表获取呢?

最佳答案

CSVParser.getRecords()方法返回 List<CSVRecord> .

如果你想要不同格式的数据,那么您将需要转换代码中的数据。

CSVRecord工具 Iterable<String> ,您可以遍历每条记录的列并构建您选择的结构(在您的情况下为 List)。代码将类似于此(警告,我不打算编译我的示例代码):

private List<String> convertCSVRecord(
final CSVRecord record)
{
final List<String> returnValue = new LinkedList<String>();

for (final String currentValue : record)
{
returnValue.add(currentValue);
}

return returnValue;
}

List.addAll(record)可能有用,试一试。

关于java - 使用 CSVParser 和 Formatter 返回记录列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50335950/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com