當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File getName()用法及代碼示例


getName()方法是File類的一部分。此函數返回給定文件對象的名稱。該函數返回一個包含給定文件對象名稱的字符串對象。如果抽象路徑不包含任何名稱,則返回一個空字符串。

函數簽名:

public String getName()

函數語法:


file.getName()

參數:該函數不接受任何參數。

返回值:此函數返回一個字符串值,該值是給定File對象的名稱。

下麵的程序將說明getName()函數的用法:

範例1:我們得到了文件的文件對象,我們必須獲取文件對象的名稱。

// Java program to demonstrate the 
// use of getName() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("c:\\users\\program.txt"); 
  
            // Get the Name of the given file f 
            String Name = f.getName(); 
  
            // Display the file Name of the file object 
            System.out.println("File Name : " + Name); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File Name : program.txt

範例2:我們得到了目錄的文件對象,我們必須獲取文件對象的名稱。

// Java program to demonstrate the 
// use of getName() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f 
                = new File("c:\\users\\program"); 
  
            // Get the Name of the given file f 
            String Name = f.getName(); 
  
            // Display the file Name 
            // of the file object 
            System.out.println("File Name : "
                               + Name); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File Name :program

這些程序可能無法在在線IDE中運行。請使用離線IDE並設置文件名



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File getName() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。