Java URL.getHost()
Syntax
URL.getHost() has the following syntax.
public String getHost()
Example
In the following code shows how to use URL.getHost() method.
import java.net.URL;
//from w w w . j ava 2 s .com
public class Main {
public static void main(String args[]) throws Exception {
URL u = new URL("http://www.yourserver.com/abc/demo.htm");
System.out.println("The URL is " + u);
System.out.println("The host part is " + u.getHost());
}
}
The code above generates the following result.