Skip comments & surroundingSpacesNeedQuotes with supercsv 2.2.0 -
Skip comments & surroundingSpacesNeedQuotes with supercsv 2.2.0 -
i ignore comments start '#' char , surrounding spaces quotes opencsv 2.2.0 not work. searched source of supercsv skip comment feature preference never used code. can help me ?
thanks in advance.
as documentation on website demonstrates, have create custom csvpreference , pass csvreader's constructor. e.g.
// create custom preference csvpreference skipcommentspreference = new csvpreference.builder( csvpreference.standard_preference) .skipcomments(new commentstartswith("#").build(); // create reader preference icsvbeanreader beanreader = new csvbeanreader( new filereader("my.csv"), skipcommentspreference); supercsv
Comments
Post a Comment