Hi
Assume that the a comma separated text file (namely user.txt) contains data as below:
""AB"",CD","1407"
I converted the text file into a csv file (just by changing the file extension to .csv named as user.csv). and while opening the csv file through MS Excel application the data
is displayed in three columns as below:
col1 col2 col3
----- ------ -------
AB"" CD" 1407
Is there any
java API / or program, to parse the text file (user.txt) and extract the data as same as excel?
Thanks
Ganni