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


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


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

函數簽名:

public String getParent()

函數語法:


file.getParent()

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

返回值:該函數返回一個String值,它是給定File對象的Parent。

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

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

// Java program to demonstrate the 
// use of getParent() 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 Parent 
            // of the given file f 
            String Parent = f.getParent(); 
  
            // Display the file Parent 
            // of the file object 
            System.out.println("File Parent : "
                               + Parent); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File Parent : c:\users

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

// Java program to demonstrate the 
// use of getParent() 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 Parent 
            // of the given file f 
            String Parent = f.getParent(); 
  
            // Display the file Parent 
            // of the file object 
            System.out.println("File Parent : "
                               + Parent); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File Parent : c:\users

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



相關用法


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