Java API Tutorial - Java URI.parseServerAuthority()








Syntax

URI.parseServerAuthority() has the following syntax.

public URI parseServerAuthority()    throws URISyntaxException

Example

In the following code shows how to use URI.parseServerAuthority() method.

/*from  ww  w. java  2  s .  c  om*/
import java.net.URI;
import java.net.URISyntaxException;


public class Main {

  public static void main(String[] args) throws URISyntaxException {
    URI uri =  new URI("http://java2s.com/").parseServerAuthority();;

    System.out.println(uri);
  }
}

The code above generates the following result.