Im using CSVWriter(OpenCSV) to write the data into CSV in Java.
Can any one please help me to append data to the existing data?
I tried opening the file as given below
FileWriter pw = new FileWriter("F:\\data.csv",true); 
But I could able to see the Old content is replaced and only the new data is available in the file? I want the old data along with new data.