Package | Description |
---|---|
org.apache.commons.csv |
Jakarta-Commons CSV Format Support
|
Modifier and Type | Field and Description |
---|---|
static CSVStrategy |
CSVStrategy.DEFAULT_STRATEGY |
static CSVStrategy |
CSVStrategy.EXCEL_STRATEGY |
private CSVStrategy |
CSVParser.strategy |
private CSVStrategy |
CSVPrinter.strategy |
static CSVStrategy |
CSVStrategy.TDF_STRATEGY |
Modifier and Type | Method and Description |
---|---|
CSVStrategy |
CSVParser.getStrategy()
Obtain the specified CSV Strategy
|
CSVStrategy |
CSVPrinter.getStrategy()
Obtain the specified CSV Strategy
|
Modifier and Type | Method and Description |
---|---|
CSVParser |
CSVParser.setStrategy(CSVStrategy strategy)
Deprecated.
the strategy should be set in the constructor
CSVParser.CSVParser(Reader,CSVStrategy) . |
CSVPrinter |
CSVPrinter.setStrategy(CSVStrategy strategy)
Sets the specified CSV Strategy
|
Constructor and Description |
---|
CSVParser(java.io.Reader input,
CSVStrategy strategy)
Customized CSV parser using the given
CSVStrategy |