我可以使用以下代码
阅读csv文件Reader inRead = new FileReader("testfile.csv");
Iterable<CSVRecord> records = CSVFormat.EXCEL.parse(inRead);
for (CSVRecord record : records) {
String lastName = record.get("Name");
}
但是,我想用&#34; ABC&#34;添加姓氏。并更新相同的文件。无论如何要做到这一点?