Package | Description |
---|---|
com.opencsv |
A very simple CSV parser for Java released under a commercial-friendly license.
|
com.opencsv.bean |
A simple bean binding interface for use with opencsv.
|
Constructor and Description |
---|
CSVIterator(CSVReader reader) |
Modifier and Type | Method and Description |
---|---|
void |
MappingStrategy.captureHeader(CSVReader reader)
Implementation of this method can grab the header line before parsing begins to use to map columns
to bean properties.
|
void |
HeaderColumnNameMappingStrategy.captureHeader(CSVReader reader)
Retrieves the header from the CSVReader.
|
void |
ColumnPositionMappingStrategy.captureHeader(CSVReader reader)
Captures the header from the reader - required by the MappingStrategy interface and is a do
nothing method for the ColumnPositionMappingStrategy.
|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
CSVReader csv)
parse the values from the csvReader.
|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
CSVReader csv,
CsvToBeanFilter filter)
parse the values from the csvReader.
|
Copyright © 2015. All rights reserved.