Is it possible to access a specific row in a CSV file and replace a specific field in it? E.g. like in this pseudo code:
Row row = csvFile.getRow(123);
row.getField(2).set("someString");
Tried Apache Commons CSV and OpenCSV, but can't figure out how to do it with them. Only way I can think of is to iterate through a file, store everything in a new object and create a file, but that doesn't seem like a good way.
Thanks for any suggestion!