Invalid char between encapsulated token and delimiter in Apache Commons CSV library
We ran into this issue when we had embedded quote in our data. 0,”020″1,”BS:5252525 ORDER:99999″4 Solution applied was CSVFormat csvFileFormat = CSVFormat.DEFAULT.withQuote(null); @Cuga tip helped us to resolve. Thanks @Cuga Full code is public static void main(String[] args) throws IOException { FileReader fileReader = null; CSVFormat csvFileFormat = CSVFormat.DEFAULT.withQuote(null); String fileName = “test.csv”; fileReader = … Read more