I can read the csv file with the below code,
Reader inRead = new FileReader("testfile.csv");
Iterable<CSVRecord> records = CSVFormat.EXCEL.parse(inRead);
for (CSVRecord record : records) {
String lastName = record.get("Name");
}
But, I want to append last name with "ABC" and update the same file. is there anyway to do this?