1. 程式人生 > >java中通過檔案路徑獲取檔名

java中通過檔案路徑獲取檔名

  1. import java.io.File;  
  2. publicclass Test  
  3. {  
  4.     publicstaticvoid main(String[] args)  
  5.     {  
  6.         // path
  7.         String path1 = "D:/folder1/folder2/folder3/fileName.txt";  
  8.         String path2 = "/folder2/folder3/fileName.txt";  
  9.         // file
  10.         File file1 = new File(path1);  
  11.         File file2 = new
     File(path2);  
  12.         // get name of file
  13.         String fileName1 = file1.getName();  
  14.         String fileName2 = file2.getName();  
  15.         // print file name
  16.         System.out.println("1 ---> " + fileName1);  
  17.         System.out.println("2 ---> " + fileName2);  
  18.     }  
  19. }  
 

結果:

  1. //1 ---> fileName.txt
  2. //2 ---> fileName.txt