orangesignal / orangesignal-csv

CSV (comma-separated values) read and write library for Java.
http://orangesignal.github.io/orangesignal-csv
Apache License 2.0
43 stars 22 forks source link

case multi row header #42

Open ttson24 opened 8 years ago

ttson24 commented 8 years ago

I have template csv file have to 4 header(have 4 row). if i use @CsvEntity( header = true) and @CsvColumns({@CsvColumn( name = "CODE"), @CsvColumn( name = "CODE1"), @CsvColumn( name = "CODE2"), @CsvColumn( name = "CODE3")})

and Csv.save(lstCsvIndentEntity, fileDest, ENCODING, cfg, new CsvEntityListHandler( CsvInsidentEntity.class));

with above, when export data i have to csv file 1 row and 4 column. but in this case: i want to 4 row and 1 column.

how do i do? could you help me.!