-2

What is the best CSV java library to parse bank statements. Is there any standard csv format for bank statements? Where can i get the sample files?

  • It's been asked (and answered) MANY times on SO how to read CSV files. Just have a look at Related section on the right. And I think you saw many suggestions above when you were writing this question. – Adam Dyga Feb 28 '13 at 09:00
  • If someone land on this page, here is comparison of various different parsers performances https://github.com/uniVocity/csv-parsers-comparison – Ewoks Sep 17 '15 at 13:37

2 Answers2

0

I use openCSV.

Very easy to use, see the examples:

http://opencsv.sourceforge.net/#how-to-read

inigoD
  • 1,681
  • 14
  • 26
0

Parsing bank statements in csv is as good as parsing any other csv file.

I always rely on OpenCsv.

flash
  • 6,730
  • 7
  • 46
  • 70