Hi I have a csv file which has 1977*15 cells. One of the cells is Authors which has more than 1 author hence the data is in the format ("a,b,c") where a,b,c are different authors. My task is to get the value in all the cells, sort it (based on Authors and Document Title) and then insert it into the database.
But even before sorting the values and inserting the data onto the database i am trying to check if I have the complete data in my arraylist. hence transferring the whole data onto a self created csv file.
Its here on this newly created csv file that i am not able to view the complete data and the data retrieved keeps on changing as I try to implement different logic. Is there a bottleneck on the Arraylist while storing the data? I'm using eclipse and there is no Out of Memory error which is being shown.