Posts by Gustavo Furtado • 61 points
1 post
-
6
votes4
answers28007
viewsA: How to read CSV files in Java
The code below reads the records of a CSV file, using Opencsv. In this example we get a List<String[]>. Reader reader = Files.newBufferedReader(Paths.get("nome-do-arquivo.csv")); CSVReader…