Possible Duplicate:
Java: splitting a comma-separated string but ignoring commas in quotes
Is there a way to handle commas inside values in a csv file?
For example if there's a company name, Some Company, Inc.. The usual parsing will interpret the comma between company and Inc as separator between values, and this throws everything off.
I have no control over the csv file -- I need to work with it the way it is. Is there a solution in Java?
EDIT: the solution can be found here