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 w w w . j a va 2 s. com*/
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.