sitelink1 | http://opencsv.sourceforge.net |
---|---|
sitelink2 | |
sitelink3 | |
extra_vars4 | |
extra_vars5 | |
extra_vars6 |
클래스는 CSVReader 와 CSVWriter 두개뿐으로써 사용법 또한 매우 간단하다.
이 패키지에서는 Standard CSV 포맷만 지원하고, MicroSoft의 엑셀포맷은 지원하지 않는다.
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.StringWriter;
import java.util.List;
/**
* Copyright 2005 Bytecode Pty Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
public class AddressExample {
private static final String ADDRESS_FILE = "addresses.csv";
public static void main(String[] args) throws IOException {
/** File Read */
CSVReader reader = new CSVReader(new FileReader(ADDRESS_FILE), 't');
String[] nextLine;
while ((nextLine = reader.readNext()) != null) {
for (int i = 0; i < nextLine.length; i++) {
System.out.print("[" + nextLine[i] + "] ");
}
System.out.println("");
}
// Try writing it back out as CSV to the console
CSVReader reader2 = new CSVReader(new FileReader(ADDRESS_FILE), 't');
List allElements = reader2.readAll();
StringWriter sw = new StringWriter();
CSVWriter writer = new CSVWriter(sw);
writer.writeAll(allElements);
System.out.println("nnGenerated CSV File:nn");
System.out.println(sw.toString());
/** File Write */
CSVWriter writer2 = new CSVWriter(new FileWriter("yourfile.csv"), 't');
writer2.writeAll(allElements);
// feed in your array (or convert your data to an array)
String[] entries = "first#second#third#fourth".split("#");
writer2.writeNext(entries);
writer2.close();
}
}
opencsv
An Open Source Java csv library under commercial-friendly license... committed to changing the world, one comma at a time...
What is opencsv?
opencsv is a very simple csv (comma-separated values) parser library for Java. It was developed because all of current csv parsers I've come across don't have commercial-friendly licenses.
Where can I get it?
Source and binaries are available from Sourceforge.
What features does opencsv support?
opencsv supports all the basic csv-type things you're likely to want to do:
- Arbitrary numbers of values per line
- Ignoring commas in quoted elements
- Handling quoted entries with embedded carriage returns (ie entries that span multiple lines)
- Configurable separator and quote characters (or use sensible defaults)
- Read all the entries at once, or use an Iterator style model
- Creating csv files from String[] (ie. automatic escaping of embedded quote chars)
How do I read and parse a CSV file?
If you want to use an Iterator style pattern, you might do something like this:
CSVReader reader = new CSVReader(new FileReader("yourfile.csv")); String [] nextLine; while ((nextLine = reader.readNext()) != null) { // nextLine[] is an array of values from the line System.out.println(nextLine[0] + nextLine[1] + "etc..."); }
Or, if you might just want to slurp the whole lot into a List
, just call readAll()
...
CSVReader reader = new CSVReader(new FileReader("yourfile.csv")); List myEntries = reader.readAll();
which will give you a List
of String[]
that you can iterate over. If all else fails, check out the Javadoc.
Can I use my own separators and quote characters?
Yes. There are constructors that cater for supplying your own separator and quote characters. Say you're using a tab for your separator, you can do something like this:
CSVReader reader = new CSVReader(new FileReader("yourfile.csv"), 't');
And if you single quoted your escaped characters rather than double quote them, you can use the three arg constructor:
CSVReader reader = new CSVReader(new FileReader("yourfile.csv"), 't', ''');
You may also skip the first few lines of the file if you know that the content doesn't start till later in the file. So, for example, you can skip the first two lines by doing:
CSVReader reader = new CSVReader(new FileReader("yourfile.csv"), 't', ''', 2);
Can I write csv files with opencsv?
Yes. There is a CSVWriter in the same package that follows the same semantics as the CSVReader. For example, to write a tab separated file:
CSVWriter writer = new CSVWriter(new FileWriter("yourfile.csv"), 't'); // feed in your array (or convert your data to an array) String[] entries = "first#second#third".split("#"); writer.writeNext(entries); writer.close();
If you'd prefer to use your own quote characters, you may use the three arg version of the constructor, which takes a quote character (or feel free to pass in CSVWriter.NO_QUOTE_CHARACTER).
You can also customise the line terminators used in the generated file (which is handy when you're exporting from your Linux web application to Windows clients). There is a constructor argument for this purpose.
Can I dump out SQL tables to CSV?
Yes you can. Sean Sullivan added a neat feature to CSVWriter so you can pass writeAll()
a ResultSet.
java.sql.ResultSet myResultSet = .... writer.writeAll(myResultSet, includeHeaders);
Can I use opencsv in my commercial applications?
Yes. opencsv is available under a commercial-friendly Apache 2.0 license. You are free to include it in your commericial applications without any fee or charge, and you are free to modify it to suit your circumstances. To find out more details of the license, read the Apache 2.0 license agreement.
Can I get the source? More example code?
Yes. The download from the SourceForge page includes the full source in the /src
directory. It's one file, so go crazy. There is also a sample addressbook csv reader in the /examples
directory. And for extra marks, there's a JUnit test suite in the /test
directory.
Who maintains opencsv?
opencsv was developed in a couple of hours by Glen Smith. You can read his blog for more info and contact details.
If you've found a bug, you can report it on the project page at Sourceforge. Please post a sample file that demonstrates your issue. For bonus marks, post a patch too. :-)
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
18 | POI HSSF 기능 가이드 -- 퀵·가이드 (영문) | 황제낙엽 | 2008.05.15 | 297 |
» |
Comma Separated Values (CSV) - au.com.bytecode.opencsv
![]() | 황제낙엽 | 2007.01.23 | 857 |
16 | Comma Separated Values (CSV) - com.Ostermiller.util Java Utilities | 황제낙엽 | 2007.01.23 | 266 |
15 | 엑셀(Excel)문서 처리 패키지 | 황제낙엽 | 2007.01.22 | 1437 |
14 | JUnit 간단 정리 | 황제낙엽 | 2007.09.17 | 81 |
13 | JUnit 3.8에서 JUnit 4, TestNG 활용으로 | 황제낙엽 | 2007.09.17 | 421 |
12 | 이클립스에 JUnit Test 환경 설정하기 | 황제낙엽 | 2007.08.28 | 102 |
11 | log4j에서 여러파일에 로그남기기 | 황제낙엽 | 2007.09.04 | 61 |
10 | Unitils 를 이용해 Spring Test의 편리성 획득하기 | 황제낙엽 | 2007.09.04 | 128 |
9 | Assertions : 비교 확인, 조건 확인, Null 확인 | 황제낙엽 | 2007.09.03 | 209 |
8 | JUnit 4로 뛰어들기 (한글) | 황제낙엽 | 2007.09.03 | 180 |
7 | Test-Driven Development by JUnit | 황제낙엽 | 2006.02.21 | 150 |
6 | jWebUnit 프레임웍으로 웹 애플리케이션 테스트를 간단하게 | 황제낙엽 | 2006.02.21 | 69 |
5 | [re] jWebUnit 프레임웍 로그인 테스트 예제 | 황제낙엽 | 2006.02.22 | 70 |
4 | jWebUnit 의 원조 HttpUnit | 황제낙엽 | 2006.02.23 | 70 |
3 | Junit 을 이용한 효율적인 단위 테스트 전략 | 황제낙엽 | 2007.01.30 | 368 |
2 | JUnit의 구조 | 황제낙엽 | 2007.07.25 | 88 |
1 | Log4j 웹에서 사용하기 | 황제낙엽 | 2007.05.13 | 95 |