需要将CSV数据与表行数据进行比较
尝试使用csv映射和表查询数组
答案 0 :(得分:0)
我希望它能为您提供帮助:
public List<String[]> readCSV(String csvFile) throws IOException {
List<String[]> returnVal = new ArrayList<>();
String line;
try (BufferedReader br = new BufferedReader(new FileReader(csvFile))) {
while ((line = br.readLine()) != null)
returnVal.add(line.split(","));
}
return returnVal;
}
此函数获取csv文件(路径)并返回行列表。
您可以比较行或对数据进行任何分析。