Java URI.equals(Object ob)
Syntax
URI.equals(Object ob) has the following syntax.
public boolean equals(Object ob)
Example
In the following code shows how to use URI.equals(Object ob) method.
import java.net.URI;
import java.net.URISyntaxException;
/* w w w . ja v a2 s . com*/
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.