Java URI.getHost()
Syntax
URI.getHost() has the following syntax.
public String getHost()
Example
In the following code shows how to use URI.getHost() method.
import java.net.URI;
import java.net.URISyntaxException;
/*from w ww . j a va2 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");
System.out.println("URI : " + uri);
System.out.println(uri.getHost());
}
}
The code above generates the following result.