URL getHost() method in Java with Examples Last Updated : 27 Dec, 2018 Comments Improve Suggest changes Like Article Like Report 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 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 getHost() import java.net.*; class GFG { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL("https:// www.geeksforgeeks.org"); // get the Host String Host = url.getHost(); // display the URL System.out.println("URL = " + url); // 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 Host = www.geeksforgeeks.org Example 2: Java // Java program to show the // use of the function getHost() import java.net.*; class GFG { 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 Host 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 Example 3: If we create a URL with no host name and ask for the host using the getHost() function the function returns blank String. Java // Java program to show the // use of the function getHost() import java.net.*; class GFG { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL("https://"); // get the Host String Host = url.getHost(); // display the URL System.out.println("URL = " + url); // 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: Host = Comment More infoAdvertise with us Next Article URL getHost() method in Java with Examples andrew1234 Follow Improve Article Tags : Java Java-Functions Java-net-package Java-URL Practice Tags : Java Similar Reads 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 URL getAuthority() method in Java with Examples 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 no 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 getRef() method in Java with Examples The getRef() function is a part of URL class. The function getRef() returns the Reference or anchor part of a specified URL. Function Signature: public String getRef() Syntax: url.getRef() Parameter: This function does not require any parameter Return Type: The function returns String Type Below pro 2 min read URL getProtocol() method in Java with Examples The getProtocol() function is a part of URL class. The function getProtocol() returns the Protocol of a specified URL. Function Signature public String getProtocol() Syntax url.getProtocol() Parameter This function does not require any parameter Return Type: The function returns String Type Below pr 2 min read URL getFile() method in Java with Examples The getFile() function is a part of URL class. The function getFile() returns the file name of a specified URL. The getFile() function returns the path and the query of the URL. Function Signature: public String getFile() Syntax: url.getFile() Parameter: This function does not require any parameter 2 min read 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 URL getQuery() method in Java with Examples The getQuery() function is a part of URL class. The function getQuery() returns the Query of a specified URL. Function Signature: public String getQuery() Syntax: url.getQuery() Parameter: This function does not require any parameter Return Type: The function returns String Type Query of a specified 2 min read URL getUserInfo() method in Java with Examples The getUserInfo() function is a part of URL class. The function getUserInfo() returns the UserInfo part of a specified URL. Function Signature: public String getUserInfo() Syntax: url.getUserInfo() Parameter: This function does not require any parameter Return Type: The function returns String Type 2 min read URL getDefaultPort() method in Java with Examples The getDefaultPort() function of URL class returns the default port of a specified URL. If the URL scheme or the URLStreamHandler for the URL do not define a default port number then the function returns -1. Function Signature public int getDefaultPort() Syntax url.getDefaultPort() Parameter This fu 2 min read Like