URL getAuthority() method in Java with Examples Last Updated : 27 Dec, 2018 Comments Improve Suggest changes Like Article Like Report The getAuthority() function is a part of URL class. The function getAuthority() returns the authority of a specified URL. The Authority part of the URL is the host name and the port of the URL. Function Signature public String getAuthority() Syntax url.getAuthority() Parameter: This function does not require any parameter Return Type: The function returns String Type Below programs illustrates the use of getHost() function: Example 1: Java // Java program to show the // use of the function getAuthority() import java.net.*; class Solution { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL("https:// www.geeksforgeeks.org"); // get the Authority String authority = url.getAuthority(); // display the URL System.out.println("URL = " + url); // display the Authority System.out.println("Authority = " + authority); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org Authority = www.geeksforgeeks.org Example 2: The difference between getAuthority() and getHost() function is that getAuthority() returns the host along with the port but getHost() returns only the host name. Java // Java program to show the // use of the function getAuthority() import java.net.*; class Solution { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL( "https:// www.geeksforgeeks.org:80/url-samefile-method-in-java-with-examples/"); // get the Authority String authority = url.getAuthority(); // get the Host String host = url.getHost(); // display the URL System.out.println("URL = " + url); // display the Authority System.out.println("Authority = " + authority); // display the Host System.out.println("Host = " + host); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org:80/url-samefile-method-in-java-with-examples/ Authority = www.geeksforgeeks.org:80 Host = www.geeksforgeeks.org Comment More infoAdvertise with us Next Article URL getAuthority() method in Java with Examples A andrew1234 Follow Improve Article Tags : Java Java-Functions Java-net-package Java-URL Practice Tags : Java Similar Reads URI getAuthority() method in Java with Examples The getAuthority() function is a part of URI class. The function getAuthority() returns the authority of a specified URI. The Authority part of the URL is the host name and the port of the URI. Function Signature public String getAuthority() Syntax: url.getAuthority() Parameter This function does no 3 min read URI getRawAuthority() method in Java with Examples The getRawAuthority() function is a part of URI class. The function getRawAuthority() returns the raw authority of a specified URI. This function returns the exact value of host name and post without decoding the sequence of escaped octets if any. Function Signature: public String getRawAuthority() 3 min read URL getHost() method in Java with Examples getHost() function is a part of URL class. The function getHost() returns the Host of a specified URL. The Host part of the URL is the host name of the URL. The format of the host conforms to RFC 2732. Function Signature public String getHost() Syntax url.getHost() Parameter: This function does not 2 min read URL getPath() method in Java with Examples The getPath() function is a part of URL class. The function getPath() returns the Path name of a specified URL. Function Signature: public String getPath() Syntax: url.getPath() Parameter: This function does not require any parameter Return Type: The function returns String Type Below programs illus 2 min read URL getPort() method in Java with Examples The getPort() function is a part of URL class. The function getPort() returns the port of a specified URL. The function returns the port number or -1 if the port is not set Function Signature public int getPort() Syntax url.getPort() Return Type: The function returns Integer Type Parameter: This fun 2 min read Like