I am having different use case than just using a csv reader and providing it with a CSV file for parsing. I need a java library for which I can provide a line from a CSV file and it should be able to parse it.
Any java libraries available which can do that ? (I tried google'ing for a while before posting this.). I found opencsv from apache, in its java docs it says it has a API called CSVParser which takes a line and parses it, but that API doesn't really exist in the binaries.
I am trying this dependency
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.0</version>
</dependency>
and try initializing CSVParser. Its doesn't work. I am not sure there is a different or new version of opencsv, which I am missing, please let me know
@Chrisand I'll come vote to reopen if it is better. – Chris Aug 25 '12 at 16:01