I am using OpenCSV to read data from a CSV file and am using some of the sample code from the homepage:
CSVReader reader = new CSVReader(new FileReader("stockInfo.csv"));
List myEntries = reader.readAll();
And i am now trying to loop through this list and print out each entry. But i cannot seem to figure out the code to perform this.
Could anyone explain to me how i am supposed to do this becuase i just cant seem to work it out.