Possible Duplicates:
Fast CSV parsing
How to properly parse CSV file to 2d Array?
I’m very new to java file handling. Please, can any one tell me what is “CSV file format,” and how to parse this type of file?
I want to take an input of employee data from a CSV file and save it in a hash map.
CSV stands for Comma Separated Values.
Here data is stored as so:
OpenCSV is one good library for parsing CSV files.
There are other cousins of the CSV such as TSV (Tab Separated Values) and PSV (Pipe Separated Values). The below link should give you a head start:
http://en.wikipedia.org/wiki/Delimiter-separated_values