URI.compareTo(URI that) has the following syntax.
public int compareTo(URI that)
In the following code shows how to use URI.compareTo(URI that) method.
import java.net.URI; import java.net.URISyntaxException; //from www .j a v a 2s. c o m public class Main { public static void main(String[] args) throws NullPointerException, URISyntaxException { URI uri = new URI("http://www.java2s.com:8080/yourpath/fileName.htm"); URI uri1 = new URI("http://www.java2s.com:8080/yourpath/fileName.htm"); System.out.println(uri.compareTo(uri1)); } }
The code above generates the following result.