Answers for "how to read data from csv file and store in an order in another file in java"

0

csv file data structure java

if you have a lot of holes in you CSV use the comparable as your coordinate
public class Coordinate implements Comparable<Coordinate> {
    public int row;
    public int column;
    public Coordinate(int r, int c) {
        row = r;
        column = c;
    }

    @Override
    public int compareTo(Coordinate o) {
        int r = Integer.compare(row, o.row);
        if(r == 0) {
            r = Integer.compare(column, o.column);
        }
        return r;
    }

    public boolean equals(Object o) {
        if(o instanceof Coordinate) {
            Coordinate c = (Coordinate)o;
            return row == c.row && column == c.column;
        }
        return false;
    }
}
Posted by: Guest on October-20-2020

Code answers related to "how to read data from csv file and store in an order in another file in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language