I\'m using opencsv and want to write to a .csv file through multiple sessions. However every time I start a new CSVWriter the old file gets erased. Can I change
.csv
There's an option in the FileWriter instead of the CSVWriter to append at the end of the file.
This code makes it work:
mFileWriter = new FileWriter(file_path, true); mCsvWriter = new CSVWriter(mFileWriter);