Skip to content

How to read empty cell csv file without quoteCharacter #70

Closed Answered by osiegmar
liuziyuan asked this question in Q&A
Discussion options

You must be logged in to vote

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.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by osiegmar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants