Java URI.hashCode()
Syntax
URI.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use URI.hashCode() method.
import java.net.URI;
import java.net.URISyntaxException;
//from w w w. j av a 2 s . co m
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com");
System.out.println("URI : " + uri);
System.out.println(uri.hashCode());
}
}
The code above generates the following result.