Java API Tutorial - 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;
/* w  w  w  .j a v  a 2  s  .c o m*/
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.