I am using OpenCsv to access a fie which I wish to sort and then write back to another file name. Am having problem sorting the list. Thanks.
Am trying to sort the csv file by the 1st and 2nd columns.
CSVReader reader = new CSVReader(new FileReader("d:\\temp\\data1.csv"), ',', '"', 1);
//Read all rows at once
List<String[]> allRows = reader.readAll();
//Read CSV line by line and use the string array as you want
for(String[] row : allRows){
System.out.println(Arrays.toString(row));
}
*Arrays.sort(allRows.toArray());*
CSVWriter writer = new CSVWriter(new FileWriter("d:\\temp\\data1sorted.csv"));
writer.writeAll(allRows);
//close the writer
writer.close();
I am getting the following error when I run this code:
Exception in thread "main" java.lang.ClassCastException: [Ljava.lang.String; cannot be cast to java.lang.Comparable
at java.util.ComparableTimSort.countRunAndMakeAscending(Unknown Source)
at java.util.ComparableTimSort.sort(Unknown Source)
at java.util.ComparableTimSort.sort(Unknown Source)
at java.util.Arrays.sort(Unknown Source)
at CompareCsv.main(CompareCsv.java:31)
Does this help you?