web-dev-qa-db-ja.com

JavaのCSV API

CSV入力ファイルを読み取り、いくつかの簡単な変換を行ってから書き込むことができるシンプルなAPIを誰もが推奨できますか。

簡単なグーグルが見つけた http://flatpack.sourceforge.net/ これは有望に見える。

このAPIに結合する前に、他の人が使用しているものを確認したかっただけです。

161
David Turner

Apache Commons CSV

Apache Common CSV を確認してください。

このライブラリは、標準の RFC 418 を含む CSVのいくつかのバリエーション の読み取りと書き込みを行います。また、読み取り/書き込み Tab-delimited ファイル。

  • エクセル
  • InformixUnload
  • InformixUnloadCsv
  • MySQL
  • オラクル
  • PostgreSQLCsv
  • PostgreSQLText
  • RFC4180
  • TDF
29
java

過去に OpenCSV を使用しました。

import au.com.bytecode.opencsv.CSVReader;
文字列fileName = "data.csv"; 
 CSVReader reader = new CSVReader(new FileReader(fileName)); 
 

//最初の行がheader String [] header = reader.readNext();の場合
// null String [] line = reader.readNext(); が返されるまでreader.readNextを繰り返し処理します

別の質問 への回答には他の選択肢がいくつかありました。

82
Jay R.

更新:この回答のコードは、Super CSV 1.52用です。 Super CSV 2.4.0の更新されたコード例は、プロジェクトのWebサイトで見つけることができます: http://super-csv.github.io/super-csv/index.html


SuperCSVプロジェクトは、CSVセルの解析と構造化された操作を直接サポートします。 http://super-csv.github.io/super-csv/examples_reading.html から見つけることができます。

与えられたクラス

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; }
}

ヘッダー付きのCSVファイルがあること。次の内容を想定しましょう

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

次に、UserBeanのインスタンスを作成し、次のコードでファイルの2行目の値を入力します。

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();
    }
  }
}

次の「操作仕様」を使用

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
};
32
kbg

CSV形式の説明を読むと、サードパーティのライブラリを使用する方が自分で作成するよりも頭痛が少ないと感じます。

ウィキペディアには、10個以上の既知のライブラリがリストされています。

ある種のチェックリストを使用してリストされたライブラリを比較しました。 OpenCSVが勝者(YMMV)であり、次の結果が得られました。

+ 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)
17
gnat

JavaCSV を使用し、かなりうまく機能します

8
Mat Mannion

数か月前に、私はsourceforgeで SuperCSV を使用し、シンプルで堅牢で問題のないことを確認しました。

6
Cheekysoft

Csvreader APIを使用して、次の場所からダウンロードできます。

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

または

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

次のコードを使用します。

/ ************ 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();
        }

    }

}

CSVファイルへの書き込み/追加

コード:

/************* 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();
        }

    }
}
5
Dhananjay Joshi

CSV/Excel Utility もあります。このデータはすべてテーブルのようなものであり、イテレータからデータを配信することを前提としています。

3
Frank

CSV形式はStringTokenizerにとっては簡単に聞こえますが、より複雑になる可能性があります。ここドイツでは、セミコロンが区切り文字として使用されており、区切り文字を含むセルはエスケープする必要があります。 StringTokenizerを使用して簡単に処理することはできません。

http://sourceforge.net/projects/javacsv に行きます

2
paul

Excelからcsvを読み取る場合は、興味深いコーナーケースがいくつかあります。それらのすべてを思い出すことはできませんが、Apache commons csvはそれを正しく処理できませんでした(たとえば、urlを使用)。

引用符、カンマ、スラッシュを使用して、Excel出力をテストしてください。

0
daveb