URL getUserInfo() method in Java with Examples Last Updated : 31 Dec, 2018 Comments Improve Suggest changes Like Article Like Report 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 Below programs illustrates the use of getUserInfo() function: Example 1: Given a URL we will get the UserInfo using the getUserInfo() function. Java // Java program to show the use // of the function getUserInfo() import java.net.*; class Solution { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL( "https:// [email protected]"); // get the UserInfo String _UserInfo = url.getUserInfo(); // display the URL System.out.println("URL = " + url); // display the UserInfo System.out.println(" UserInfo= " + _UserInfo); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// [email protected] UserInfo= Arnab_Kundu Example 2: Now we will not provide any User Info and use the function to get the UserInfo and see the results. Java // Java program to show the use // of the function getUserInfo() 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 UserInfo String _UserInfo = url.getUserInfo(); // display the URL System.out.println("URL = " + url); // display the UserInfo System.out.println(" UserInfo= " + _UserInfo); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org UserInfo= null Comment More infoAdvertise with us Next Article URL getUserInfo() method in Java with Examples A andrew1234 Follow Improve Article Tags : Java Java-Functions Java-net-package Java-URL Practice Tags : Java Similar Reads 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 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 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 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 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 Like