URI.equals(Object ob) has the following syntax.
public boolean equals(Object ob)
In the following code shows how to use URI.equals(Object ob) method.
import java.net.URI; import java.net.URISyntaxException; //from ww w . jav a2 s . c om 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.equals(uri1)); } }
The code above generates the following result.