Java IO Tutorial - Java Path.compareTo(Path other)








Syntax

Path.compareTo(Path other) has the following syntax.

int compareTo(Path other)

Example

In the following code shows how to use Path.compareTo(Path other) method.

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
/*from ww  w. ja  v  a  2 s. c  o m*/
public class Main {

    public static void main(String[] args) {

        Path path01 = Paths.get("/tutorial/Java/JavaFX/Topic.txt");
        Path path02 = Paths.get("C:/tutorial/Java/JavaFX/Topic.txt");


        //compare using Path.compareTo
        int compare = path01.compareTo(path02);
        System.out.println(compare);
    }
}

The code above generates the following result.