I have a csv file, with multiple rows and columns.
Let say
Dates Data1 data2
19/07/1999 2 5
18/06/1991 3 9
Given a column header name(say data2), I want to extract the column corresponding to it. How to do it?
Also, given a particular date(say 18/06/1991), and a column header name, how to get corresponding field ?
Take a look at OpenCSV. It should be able to do what you need. Take a look here to get started.