我正在使用 Univocity 解析器阅读 CSV 列表 - https://www.univocity.com/pages/parsers-tutorial。下面是 test.csv 的样子
Active;3189;Active on this date 2015-03-15-17.03.06.000000
Catalog;3189;This is for date 2015-04-21-11.04.11.000000
Master;3190;It happens on this date 2016-04-22-09.04.27.000000
InActive;3190;Inactive on this date 2016-04-23-09.04.46.000000
下面的代码做一个解析 -
List<String[]> allRows = parser.parseAll(new FileReader("E:/test.csv"));
如何在基于第二列唯一性解析和连接后一一比较行
O/p
对于 3189 条记录 - 字符串 x =Active on this date 2016-03-15-17.03.06.000000 and This is for date 2015-04-21-11.04.11.000000
对于 3190 条记录字符串 x =It happens on this date 2016-04-22-09.04.27.000000 and Inactive on this date 2016-04-23-09.04.46.000000