Haha.. Now i see the comment Tks a lot :-)
Hi Scott, my case likes the follow @Test public void verifyBug196() throws IOException { String testString = "dummy, line\n" + "another, dummy, line\n" + "name,id,orderNumber\n"; //no data //data-part StringReader stringReader = new StringReader(testString); CSVReader csvReader = new CSVReaderBuilder(stringReader).build(); // read the first two lines to get to the part that csv to bean needs. String[] line1 = csvReader.readNext(); String[] line2 = csvReader.readNext(); assertEquals(2, line1.length);...
CsvToBean parse empty lines error