Java Get File Name

In order to get the file name, we have provided the path of file 'Hello.txt" to the constructor of class File.

Java Get File Name

In order to get the file name, we have provided the path of file 'Hello.txt" to the constructor of class File.

Java Get File Name

Java Get File Name

     

In this section, you will study how to obtain the name of file. 

In order to get the file name, we have provided the path of file 'Hello.txt" to the constructor of class File. The method getName() returns the name of the file directory denoted by the pathname.

Here is the code of GetFileName.java

import java.io.File;  
  
  public class GetFileName  {  
  public static void main(String[] args){  
  File file = new File("C:\\Hello.txt");  
  String fileName= file.getName();
  System.out.println("The File is "+fileName);  
 }  
 }  

Output will be displayed as:

 

Download Source Code