programing

Java용 CSV API

shortcode 2022. 7. 17. 20:52
반응형

Java용 CSV API

CSV 입력 파일을 읽고 간단한 변환을 수행한 후 쓸 수 있는 간단한 API를 추천해 주실 수 있나요?

퀵 구글은 유망해 보이는 http://flatpack.sourceforge.net/을 발견했다.

저는 이 API에 참여하기 전에 다른 사람들이 무엇을 사용하고 있는지 확인하고 싶었습니다.

이전에 OpenCSV를 사용한 적이 있습니다.

import au.com.bytecode.opencsv.CSVReader;

파일명 = "data.csv"; = (fileNameCSVReader 리리 = new CSVReader ( new FileReader ( fileName ) ;

// " [ (); "[ ]" = readNext ( ); " ]"readNext ( );
// 리더.Next(다음) null(특수) 리더.다음으로는요.[ ] = readNext();

다른 질문에 대한 답변에는 몇 가지 다른 선택지가 있었다.

Apache Commons CSV

Apache 공통 CSV를 확인하십시오.

라이브러리에서는 표준 RFC 4180을 포함한 CSV의 여러 변형을 읽고 씁니다.또한 으로 구분된 파일을 읽고 씁니다.

  • 엑셀
  • Informix 언로드
  • InformixUnloadCsv
  • MySQL
  • 오라클
  • 포스트그레스QLCsv
  • 포스트그레스QLText(LText)
  • RFC4180
  • TDF

업데이트: 이 답변의 코드는 Super CSV 1.52용입니다.Super CSV 2.4.0의 업데이트된 코드 예는 프로젝트 웹사이트 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 인스턴스를 만들고 다음 코드를 사용하여 파일의 두 번째 줄에 있는 값으로 채울 수 있습니다.

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

CSV 형식의 설명을 읽으면 서드파티 라이브러리를 사용하는 것이 직접 작성하는 것보다 훨씬 덜 번거롭다는 것을 알 수 있습니다.

Wikipedia에는 10개 이상의 알려진 라이브러리가 나열되어 있습니다.

어떤 체크리스트를 사용하여 리스트 되어 있는 libs를 비교했습니다.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)

JavaCSV를 사용하고 있기 때문에, 꽤 잘 동작합니다.

지난 번 엔터프라이즈 애플리케이션에서는 상당한 양의 CSV를 처리할 필요가 있었습니다.몇 달 전 소스 포지에서 SuperCSV를 사용했는데 심플하고 견고하며 문제가 없었습니다.

다음 위치에서 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();
        }

    }
}

CSV/Excel 유틸리티도 있습니다.모든 데이터가 테이블과 같다고 가정하고 반복기에서 데이터를 전달합니다.

CSV 형식은 StringTokenizer에 충분히 쉬운 것처럼 들리지만 더 복잡해질 수 있습니다.여기 독일에서는 세미콜론이 딜리미터로 사용되며 딜리미터를 포함하는 셀은 이스케이프해야 합니다.String Tokenizer에서는 쉽게 처리할 수 없습니다.

http://sourceforge.net/projects/javacsv에 접속하겠습니다.

excel에서 csv를 읽으려면 몇 가지 흥미로운 코너 케이스가 있습니다.모두 기억할 수는 없지만 apache commons csv는 제대로 처리할 수 없었습니다(예를 들어 URL).

Excel 출력은 따옴표, 쉼표 및 슬래시를 사용하여 테스트해야 합니다.

언급URL : https://stackoverflow.com/questions/101100/csv-api-for-java

반응형