Skip to content
Advertisement

How to sort data in a CSV file using a particular field in Java?

I want to read a CSV file in Java and sort it using a particular column. My CSV file looks like this:

JavaScript

Considering I want to sort it using the third column, my output should look like:

JavaScript

After some research on what data structure to use to hold the data of CSV, people here suggested to use Map data structure with Integer and List as key and value pairs in this question:

JavaScript

So could anyone please suggest a way to sort this Map using an element in the ‘List’ in Java? Also if you think this choice of data structure is bad, please feel free to suggest an easier data structure to do this.

Thank you.

Advertisement

Answer

I would use an ArrayList of ArrayList of String:

JavaScript

Each entry is one line, which is a list of strings. You initialize the list by:

JavaScript

To get the nth line:

JavaScript

To sort you write a custom Comparator. In the Constructor of that comparator you can pass the field position used to sort.

The compare method then gets the String value on stored position and converts it to a primitive ava type depending on the position. E.g you know that at position 2 in the csv there is an Integer, then convert the String to an int. This is neccessary for corretcly sorting. You may also pass an ArrayList of Class to the constructor such that it knows which field is what type.
Then use String.compareTo() or Integer.compare(), depending on column position etc.

Edit example of working code:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement