up vote 34 down vote favorite
8
share [g+] share [fb]

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.

link|improve this question

9% accept rate
feedback

12 Answers

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|improve this answer
Unfortunately, OpenCSV's latest download (v2.2 at time of comment) does not compile, and they don't provide a pre-built binary. – opyate Mar 21 '11 at 21:24
3  
The package I downloaded from SourceForge had a binary in the deploy folder. – Mike Sickler Jun 1 '11 at 2:29
feedback

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|improve this answer
feedback

We use JavaCSV, it works pretty well

link|improve this answer
feedback

Reading CSV format description makes me feel that using 3rd party library would be less headache than writing it myself:

Wikipedia lists 10 or something known libraries:

I compared libs listed using some kind of check list. OpenCSV turned out a winner to me (YMMV) with the following results:

+ maven

+ maven - release version
// had some cryptic issues at Hudson with snapshot references => prefer to be on a safe side

+ code examples

+ open source
// as in "can hack myself if needed"

+ understandable javadoc
// as opposed to eg javadocs of genjava gj-csv

+ compact API
// YAGNI (note flatpack seems to have much richer API than OpenCSV)

- reference to specification used
// I really like it when people can explain what they're doing

- reference to RFC 4180 support
// would qualify as simplest form of specification to me

- releases changelog
// absence is quite a pity, given how simple it'd be to get with maven-changes-plugin
// flatpack, for comparison, has quite helpful changelog

+ bug tracking

+ active
// as in "can submit a bug and expect a fixed release soon"

+ positive feedback
// Recommended By 51 users at sourceforge (as of now)

link|improve this answer
feedback

The SuperCSV project directly supports the parsing and structured manipulation of CSV cells. From http://supercsv.sourceforge.net/codeExamples.html you'll find e.g.

given a class

public class UserBean {
    String username, password, street, town;
    int zip;

    public String getPassword() { return password; }
    public String getStreet() { return street; }
    public String getTown() { return town; }
    public String getUsername() { return username; }
    public int getZip() { return zip; }
    public void setPassword(String password) { this.password = password; }
    public void setStreet(String street) { this.street = street; }
    public void setTown(String town) { this.town = town; }
    public void setUsername(String username) { this.username = username; }
    public void setZip(int zip) { this.zip = zip; }
}

and that you have a CSV file with a header. Let's assume the following content

username, password,   date,        zip,  town
Klaus,    qwexyKiks,  17/1/2007,   1111, New York
Oufu,     bobilop,    10/10/2007,  4555, New York

You can then create an instance of the UserBean and populate it with values from the second line of the file with the following code

class ReadingObjects {
  public static void main(String[] args) throws Exception{
    ICsvBeanReader inFile = new CsvBeanReader(new FileReader("foo.csv"), CsvPreference.EXCEL_PREFERENCE);
    try {
      final String[] header = inFile.getCSVHeader(true);
      UserBean user;
      while( (user = inFile.read(UserBean.class, header, processors)) != null) {
        System.out.println(user.getZip());
      }
    } finally {
      inFile.close();
    }
  }
}

using the following "manipulation specification"

final CellProcessor[] processors = new CellProcessor[] {
    new Unique(new StrMinMax(5, 20)),
    new StrMinMax(8, 35),
    new ParseDate("dd/MM/yyyy"),
    new Optional(new ParseInt()),
    null
};
link|improve this answer
feedback

check out the one from apache

link|improve this answer
1  
The URL for this is commons.apache.org/sandbox/csv. – bmatthews68 Sep 19 '08 at 16:21
I've used the sandboxed Commons CSV for quite some time and never experienced a problem. I really hope they promote it to full standing and get it out of the sandbox. – Alex Marshall Dec 14 '10 at 19:38
feedback

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|improve this answer
+1 for SuperCSV, but it has some nasty bugs which aren't fixed yet, new bugs aren't handled currently, and the last release is almost two years old. But we are using a patched/modified version in production without any problems. – MRalwasser Jul 13 '10 at 9:39
feedback

You can use csvreader api & download from following location:

http://sourceforge.net/projects/javacsv/files/JavaCsv/JavaCsv%202.1/javacsv2.1.zip/download

or

http://sourceforge.net/projects/javacsv/

Use the following code:

/ ************ For Reading ***************/

import java.io.FileNotFoundException;
import java.io.IOException;

import com.csvreader.CsvReader;

public class CsvReaderExample {

    public static void main(String[] args) {
        try {

            CsvReader products = new CsvReader("products.csv");

            products.readHeaders();

            while (products.readRecord())
            {
                String productID = products.get("ProductID");
                String productName = products.get("ProductName");
                String supplierID = products.get("SupplierID");
                String categoryID = products.get("CategoryID");
                String quantityPerUnit = products.get("QuantityPerUnit");
                String unitPrice = products.get("UnitPrice");
                String unitsInStock = products.get("UnitsInStock");
                String unitsOnOrder = products.get("UnitsOnOrder");
                String reorderLevel = products.get("ReorderLevel");
                String discontinued = products.get("Discontinued");

                // perform program logic here
                System.out.println(productID + ":" + productName);
            }

            products.close();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

}

Write / Append to CSV file

Code:

/************* For Writing ***************************/

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

import com.csvreader.CsvWriter;

public class CsvWriterAppendExample {

    public static void main(String[] args) {

        String outputFile = "users.csv";

        // before we open the file check to see if it already exists
        boolean alreadyExists = new File(outputFile).exists();

        try {
            // use FileWriter constructor that specifies open for appending
            CsvWriter csvOutput = new CsvWriter(new FileWriter(outputFile, true), ',');

            // if the file didn't already exist then we need to write out the header line
            if (!alreadyExists)
            {
                csvOutput.write("id");
                csvOutput.write("name");
                csvOutput.endRecord();
            }
            // else assume that the file already has the correct header line

            // write out a few records
            csvOutput.write("1");
            csvOutput.write("Bruce");
            csvOutput.endRecord();

            csvOutput.write("2");
            csvOutput.write("John");
            csvOutput.endRecord();

            csvOutput.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

There is also CSV/Excel Utility. It assumes all thos data is table-like and delivers data from Iterators.

link|improve this answer
feedback

Use

String[] myValues = String.split(",");

link|improve this answer
1  
This doesn't handle escaped separators. – Lotus Notes Nov 29 '10 at 18:04
1  
What if I want to parse this: "You, my friend, suck!", 1337, slinky. – opyate Mar 21 '11 at 20:58
Also, it doesn't work if there are nothing but separators at the end of a line, e.g.: A, B, C,,,, – cs94njw Nov 15 '11 at 9:53
Common, it's not that bad, this works most of the time when your separator is something else than a comma. I often use semicolons. I have students that were extremely grateful to discover the 'split' function – Vladtn Nov 30 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

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