Getting started with Super Csv
When using Super Csv you have to make five decisions- Will I read or write? Depending on choice use a reader or a writer
- 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
- 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
- Decide on what conversions and constraints you want for each column. See processors and constraints.
- 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