I have a CSV files (excel) which has data in it and i need to parse the data using java. the data in those files doesn't separated using comma,the CSV files has number of columns and number of rows(each cell has data) where all the data is written. i need to go through on all the files until i get to the EOF(end of file)of each file and parse the data. the files contains also empty rows in it so empty row is not a criteria to stop parsing,i think only EOF will indicate that i've reached to the end of the specific file.
many thanks.