URL getFile() method in Java with Examples Last Updated : 31 Dec, 2018 Comments Improve Suggest changes Like Article Like Report 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 Return Type: The function returns String Type Below programs illustrates the use of getFile() function: Example 1: Given a URL we will get the file using the getFile() function. Java // Java program to show the // use of the function getFile() 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/url-getprotocol-method-in-java-with-examples/"); // get the File String _File = url.getFile(); // display the URL System.out.println("URL = " + url); // display the File System.out.println(" File= " + _File); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/ File= /url-getprotocol-method-in-java-with-examples/ Example 2: Now see how getFile() is different from getPath(). getPath() will exclude the query but getFile() will include the query Java // Java program to show the // use of the function getFile() 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/url-getprotocol-method-in-java-with-examples?title=protocol"); // get the File String _File = url.getFile(); // display the URL System.out.println("URL = " + url); // display the File System.out.println(" File= " + _File); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } Output: URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol File= /url-getprotocol-method-in-java-with-examples?title=protocol Comment More infoAdvertise with us Next Article URL getFile() 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 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 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 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 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 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 Like