sitelink1 | http://ostermiller.org/utils/CSV.html |
---|---|
sitelink2 | |
sitelink3 | |
extra_vars4 | |
extra_vars5 | |
extra_vars6 |
Writing CSV files: CSVPrinter
CSVPrinter csvp = new CSVPrinter(
System.out
);
// Write to the printer
csvp.writeln(
new String[]{
"hello","world"
}
);
Reading CSV files: CSVParser
String[][] values = CSVParser.parse(
new StringReader(
"hello,worldn" +
"how,are,you"
)
); // Display the parsed data
for (int i=0; i<values.length; i++){
for (int j=0; j<values[i].length; j++){
System.out.println(values[i][j]);
}
System.out.println("-----");
}
기타 CSV 관련
Example
// Create the printerCSVPrinter csvp = new CSVPrinter(
System.out
);
// Write to the printer
csvp.writeln(
new String[]{
"hello","world"
}
);
Reading CSV files: CSVParser
Example
// Parse the dataString[][] values = CSVParser.parse(
new StringReader(
"hello,worldn" +
"how,are,you"
)
); // Display the parsed data
for (int i=0; i<values.length; i++){
for (int j=0; j<values[i].length; j++){
System.out.println(values[i][j]);
}
System.out.println("-----");
}
기타 CSV 관련
Author | License | Features |
---|---|---|
Stephen Ostermiller ostermillerutils CSV and ExcelCSV for Java | Open source, GPL | Parses CSV streams into Java Strings or arrays of Strings. |
Ricebridge CSV Manager | Commercial, with various license price points. | Parses CSV streams with callback methods when data is found. Single CSV parsing class can be configured to parse standard CSV, Excel CSV, or other user specified variants. |
E.Allen Soard Java CSV Library | Open source, LGPL | Parses CSV files into Java objects contained entirely in memory. |
Nilo de Roock xlSQL | Open source, GPL | Provides a JDBC interface for accessing CSV files. |
Bruce Dunwiddie CsvReader | Commercial, with various license price points. | Reads CSV files one line at a time and values may be obtained by name (similar to LabeledCSVParser) or by index. Single CSV parsing class can be configured to parse standard CSV, Excel CSV, or other user specified variants. A .Net version of the parser is also available. |
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
14 |
POI HSSF, XSSF, SXSSF 성능 분석
![]() | 황제낙엽 | 2013.11.05 | 1660 |
13 | POI-HSSF and POI-XSSF - Java API To Access Microsoft Excel Format Files | 황제낙엽 | 2013.11.05 | 1120 |
12 |
Cell 의 wrap 설정 (텍스트 개행)
![]() | 황제낙엽 | 2011.05.09 | 3114 |
11 |
XSSF Examples
![]() | 황제낙엽 | 2011.05.04 | 335 |
10 | 병합된 셀의 스타일( border) 설정하기 | 황제낙엽 | 2011.05.03 | 1755 |
9 | 셀 크기 조정 (자동 크기 조정) | 황제낙엽 | 2011.05.03 | 7813 |
8 | 셀 병합 | 황제낙엽 | 2011.05.03 | 215 |
7 |
POI - HSSF 예제 프로젝트
![]() | 황제낙엽 | 2008.05.16 | 94 |
6 |
POI 셀 스타일 설정을 위한 예제 소스
![]() | 황제낙엽 | 2008.05.16 | 1458 |
5 | POI HSSF 기능 가이드 -- 퀵·가이드 (한글) | 황제낙엽 | 2008.05.16 | 432 |
4 | POI HSSF 기능 가이드 -- 퀵·가이드 (영문) | 황제낙엽 | 2008.05.15 | 297 |
3 |
Comma Separated Values (CSV) - au.com.bytecode.opencsv
![]() | 황제낙엽 | 2007.01.23 | 857 |
» | Comma Separated Values (CSV) - com.Ostermiller.util Java Utilities | 황제낙엽 | 2007.01.23 | 266 |
1 | 엑셀(Excel)문서 처리 패키지 | 황제낙엽 | 2007.01.22 | 1437 |