I generate a csv file while adding lines row by row. In other words, I append lines one by one to the end of the file. I use opencsv to read and write the csv file.
The problem is that i need to do some processing in order to have a new line. So what I am doing is reading the existing csv file (~6mb file) and addling one line and writing the file. So it is like
the file was x. I am putting one more line, the file is now x+1. This involves of course many read and write operations. How can I do it efficiently. This is not a homework, neither a log file handling. It will be done couple of times, but needs to be done as fast as possible.
Thanks.
I already thought of creating the big csv file by creating x number of smaller csv files and then merging it. It doesn't seem to be efficient. Maybe it is stupid to ask, but is there any way of adding a new line without reading and the writing the complete data since the bottleneck is that it is getting slower and slower each time a new line is appended to the file.