-
I have this csv file , how to set csv reader params (quoteCharacter) to read it
|
Beta Was this translation helpful? Give feedback.
Answered by
osiegmar
Nov 28, 2022
Replies: 1 comment
-
The data shown is conforming to the RFC standard. Hence it can be read without configuring anything: try (CsvReader csv = CsvReader.builder().build(path)) {
csv.forEach(System.out::println);
} FastCSV handles the quote character automatically if it is used in the data. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
osiegmar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The data shown is conforming to the RFC standard. Hence it can be read without configuring anything:
FastCSV handles the quote character automatically if it is used in the data.