Get host from a URL in Java
Description
The following code shows how to get host from a URL.
Example
import java.net.URL;
//w ww . j a v a 2 s. c o m
public class Main {
public static void main(String[] args) throws Exception {
URL url = new URL("http://www.yahoo.com:80/en/index.html?name=joe#first");
System.out.println("host:" + url.getHost());
}
}
The code above generates the following result.