Java URI.getAuthority()
Syntax
URI.getAuthority() has the following syntax.
public String getAuthority()
Example
In the following code shows how to use URI.getAuthority() method.
import java.net.URI;
import java.net.URISyntaxException;
/*from w w w . ja v a2 s. com*/
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com");
System.out.println("URI : " + uri);
System.out.println("Authority : " + uri.getAuthority());
}
}
The code above generates the following result.