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()
Syntax:
url.getRawAuthority()
Parameter This function does not require any parameter
Return Type The function returns String Type which is the exact value of host name
Below programs illustrates the use of getRawAuthority() function:
Example 1:
// Java program to show the// use of the function getRawAuthority()  import java.net.*;  class GFG {  public static void main(String args[])    {        // URI object        URI uri = null;          try {            // create a URI            uri = new URI(              // get the raw Authority            String raw_authority                = uri.getRawAuthority();              // display the URI            System.out.println("URI = " + uri);              // display the Raw Authority            System.out.println("Raw Authority = "                               + raw_authority);        }          // if any error occurs        catch (Exception e) {              // display the error            System.out.println(e);        }    }} |
URI = https://www.geeksforgeeks.org Raw Authority = www.geeksforgeeks.org
Example 2: The difference between getRawAuthority() and getHost() function is that getRawAuthority() returns the host along with the port but getHost() returns only the host name.
// Java program to show the// use of the function getRawAuthority()  import java.net.*;  class GFG {    public static void main(String args[])    {        // url object        URI uri = null;          try {            // create a URI            uri                = new URI(              // get the Raw Authority            String authority                = uri.getRawAuthority();              // get the Host            String host = uri.getHost();              // display the URI            System.out.println("URI = " + uri);              // display the raw Authority            System.out.println("Raw Authority = "                               + authority);              // display the Host            System.out.println("Host = " + host);        }          // if any error occurs        catch (Exception e) {              // display the error            System.out.println(e);        }    }} |
URI = https://www.geeksforgeeks.org:80 Raw Authority = www.geeksforgeeks.org:80 Host = www.geeksforgeeks.org
Example 3: The value returned by getAuthority() and getRawAuthority() is same except that all sequences of escaped octets are decoded. The getRawAuthority() returns the exact value of the string as provided by the user but the getAuthority() function decodes the sequence of escaped octets if any.
// Java program to show the// use of the function getAuthority()  import java.net.*;  class GFG {    public static void main(String args[])    {        // url object        URI uri = null;          try {            // create a URI            uri                = new URI(              // get the Authority            String authority = uri.getAuthority();              // get the Raw Authority            String Raw_authority                = uri.getRawAuthority();              // display the URI            System.out.println("URI = " + uri);              // display the Authority            System.out.println("Authority = "                               + authority);              // display the Raw Authority            System.out.println("Raw Authority = "                               + Raw_authority);        }          // if any error occurs        catch (Exception e) {              // display the error            System.out.println(e);        }    }} |
URI = https://www.neveropen%E2%82%AC.org:80 Authority = www.neveropen?.org:80 Raw Authority = www.neveropen%E2%82%AC.org:80
