I used InputStream, and on parsing, if there is a ","
in one column then it considers it as a separate column.
ex - abc, xyz, "m,n"
then the parsed output is abc , xyz, m, n
Here m and n are considered as separate columns.
How can I parse a csv in low memory, using some parser in Java?
1.7k Views Asked by somey At
2
I really like the Apache Commons CSVParser. This is almost verbatim from their user guide:
This is simple, configurable and line-oriented.
You could configure it like this:
For the record, this configuration is unnecessary, as the
CSVFormat.DEFAULT
works exactly the way you want it to.This would be my first attempt to see whether it fits into the memory. If it doesn't, can you be a little more specific about low memory footprint?