vote up 9 vote down star
1

Hi everyone,

Can anyone recommend a simple API that will allow me to use read a csv input file, do some simple transformations, and then write it.

A quick google has found http://flatpack.sourceforge.net/ which looks promising.

I just wanted to check what others are using before I couple myself to this api.

thanks,

David.

flag

11% accept rate

8 Answers

vote up 3 vote down

I know this is an old question, but just wanted o cross reference it with a new thread on the subject:

Can you recommend a Java library for reading (and possibly writing) CSV files?

link|flag
vote up 2 vote down

I've used OpenCSV in the past.

import au.com.bytecode.opencsv.CSVReader;

String fileName = "data.csv";
CSVReader reader = new CSVReader(new FileReader(fileName ));

// if the first line is the header String[] header = reader.readNext();
// iterate over reader.readNext until it returns null String[] line = reader.readNext();

There were some other choices in the answers to another question.

link|flag
vote up 2 vote down

check out the one from apache

link|flag
The URL for this is commons.apache.org/sandbox/csv. – bmatthews68 Sep 19 '08 at 16:21
vote up 1 vote down

If you intend to read csv from excel, then there are some interesting corner cases. I can't remember them all, but the apache commons csv was not capable of handling it correctly (with, for example, urls).

Be sure to test excel output with quotes and commas and slashes all over the place.

link|flag
vote up 1 vote down

For the last enterprise application I worked on that needed to handle a notable amount of CSV -- a couple of months ago -- I used SuperCSV at sourceforge and found it simple, robust and problem-free.

link|flag
vote up 0 vote down

The CSV format sounds easy enough for StringTokenizer but it can become more complicated. Here in Germany a semicolon is used as a delimiter and cells containing delimiters need to be escaped. Your not going to handle that easily with StringTokenizer.

I would go for http://sourceforge.net/projects/javacsv

link|flag
vote up 0 vote down

A quick Google also found http://sourceforge.net/projects/javacsv/ ...and a lot more. That being said, I'd be tempted to just parse a CSV file using Java's built in StringTokenizer instead. Reading and writing CSV is simple enough that using someone else's API might be overkill.

link|flag
Reading CSV looks simple, but is easy to get wrong, e.g. newlines appearing in quoted strings. – finnw Sep 19 '08 at 11:13
Agreed. The spec is slightly more than just "comma seperation", additonally there are a few common "tweaks" to the spec that certain tools generate. – Cheekysoft Sep 19 '08 at 11:16
vote up 3 vote down

We use JavaCSV, it works pretty well

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.