URL getRef() method in Java with Examples Last Updated : 31 Dec, 2018 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 programs illustrates the use of getRef() function: Example 1: Given a URL we will get the Reference or anchor using the getRef() function. Java // Java program to show the // use of the function getRef() 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#Arnab_Kundu"); // get the Reference or anchor String _Ref=url.getRef(); // display the URL System.out.println("URL = "+url); // display the Reference or anchor System.out.println(" Reference or anchor="+_Ref); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org#Arnab_Kundu Reference or anchor=Arnab_Kundu Example 2: Now we will not provide any anchor and use the function to get the Reference or anchor and see the results. Java // Java program to show the // use of the function getRef() 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 Reference or anchor String _Ref = url.getRef(); // display the URL System.out.println("URL = " + url); // display the Reference or anchor System.out.println(" Reference or anchor= " + _Ref); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org Reference or anchor= null Comment More infoAdvertise with us Next Article URL getPort() 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 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 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 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 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 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 Like