How do I read tsv files with Jackson csv mapper?
问题 I'm using the Jackson CSV lib to read CSV files. We've got the streaming example from the documentation : CsvMapper mapper = new CsvMapper(); mapper.enable(CsvParser.Feature.WRAP_AS_ARRAY); ObjectReader reader = mapper.readerFor(String[].class); MappingIterator<String[]> values = reader.readValues("/path/to/file") This works fine for CSV files. However I can't see how I can configure it to use tab instead of comma as the field delimiter, in order to read TSV files. The only config I can find