Reputation: 455
In the program I am writing, I want to be able to import CSV files. At the moment, it takes a basic text file in.
File mainemails = new File ("mainemails.txt");
I know that for CSV imports using File is probably not the most time-efficient thing to use. What would be the most efficient way to import a CSV file? Would I have to download any new libraries to use an efficient method?
Upvotes: 8
Views: 14168