The getHost() function is a part of URI class. The function getHost() returns the host of a specified URI.
The Host part of the URL is the host name of the URI.
Function Signature:
public String getHost()
Return Type The function returns String Type
Syntax
url.getHost()
Parameter: This function does not require any parameter
The following programs will illustrate the use of getHost() function
Example 1:
Output:
URI = https://www.geeksforgeeks.org/
Host = 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.