I've got such list:
List<String[]> rows = new CsvParser(settings).parseAll(new File("Z:/FV 18001325.csv"), "UTF-8");
What's the simplest way to print them to console?
I've tried
System.out.println(Arrays.toString(rows));
And also:
String joined = String.join(",", rows);
System.out.println(joined);
But no use...