-bottom

Package net.sf.csv4j

Provides for performing CSV input and output processing.

See:
          Description

Interface Summary
CSVBeanProcessor<T> Similar interface to the CSVLineProcessor interface for processing CSV lines except that the field values are written to a bean object.
CSVFieldMapProcessor Similar interface to the CSVLineProcessor interface for processing CSV lines except that the lines are processed as a Map of field name and values.
CSVLineProcessor Interface for processing CSV lines for the optional header and the data lines.
CSVSortedFieldMapProcessor Similar interface to the CSVLineProcessor interface for processing CSV lines except that the lines are processed as a SortedMap of field name and values.
Tokenizer<E> Defines a generic StringTokenizer-style interface.
 

Class Summary
CSVFileProcessor Provides an easy to use mechanism to process CSV files.
CSVParser Parses CSV lines of text.
CSVReader Reads and parses CSV lines from an input source.
CSVStreamProcessor Provides an easy to use mechanism to process CSV streams.
CSVTokenizer Provides an API similar to StringTokenizer.
CSVWriter Writes output lines in CSV format.
 

Exception Summary
ParseException This exception indicates a CSV Parser error occurred.
ProcessingException This exception indicates an error occurred during processing of a CSV file.
 

Package net.sf.csv4j Description

Provides for performing CSV input and output processing.


-bottom