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.
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