For example my input csv file contains:
A B C D E
10 ab a1 b1 ab1
20 cd c1 d1 cd1
30 ef e1 f1 ef1
40 gh c1 h1 gh1
My output:
A
10
20
30
40
I am able to do it by traversing each row. But I don't want like that. I have hundreds of thousands of records in my csv so I want all column values of A at a time. I want to use only apache common csv.