%metaHeader
   
by Kasper B. Graversen, 2006-2008

%menuBlock

%googleAddsTop

Getting started with Super Csv

When using Super Csv you have to make five decisions
  1. Will I read or write? Depending on choice use a reader or a writer
  2. What data structure will I read/write the data into/from. For example when reading, reading into a bean use CSVBeanReader, read into a map use CSVMapReader or a String list use CSVListReader
  3. If reading into maps or beans, either define a list of column names or utilize an existing header from the CSV file (if any). Use getCSVHeader() to easily retrieve the header
  4. Decide on what conversions and constraints you want for each column. See processors and constraints.
  5. Specify preferences for separation character, newline character, etc. See preferences.

That's all there is to it. It really is easy. Just take a look at the Code Examples... %googleAddsBottom