getParentFile()方法是File類的一部分。此函數返回給定文件對象的父文件。該函數返回一個File對象,其中包含給定文件對象的父文件。如果抽象路徑不包含任何父文件,則返回空值。
函數簽名:
public File getParentFile()
函數語法:
file.getParentFile()
參數:該函數不接受任何參數。
返回值:該函數返回File對象,它是給定File對象的父文件。
下麵的程序將說明getParentFile()函數的用法:
範例1:給定文件的文件對象,我們必須獲取文件對象的父文件。
// Java program to demonstrate the
// use of getParentFile() 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
File Parent = f.getParentFile();
// Display the file Parent file
// of the file object
System.out.println("File Parent : "
+ Parent.getPath());
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
輸出:
File Parent : c:\users
範例2:我們得到了目錄的文件對象,我們必須獲取文件對象的父文件。
// Java program to demonstrate the
// use of getParentFile() 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
File Parent = f.getParentFile();
// Display the file Parent
// file of the file object
System.out.println("File Parent : "
+ Parent.getPath());
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
輸出:
File Parent : c:\users
這些程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的父文件
相關用法
- Java File createTempFile()用法及代碼示例
- Java File getFreeSpace()用法及代碼示例
- Java File setExecutable()用法及代碼示例
- Java File delete()用法及代碼示例
- Java File getCanonicalFile()用法及代碼示例
- Java File mkdirs()用法及代碼示例
- Java File length()用法及代碼示例
- Java File setReadOnly()用法及代碼示例
- Java File isAbsolute()用法及代碼示例
- Java File getName()用法及代碼示例
- Java File getTotalSpace()用法及代碼示例
- Java File getUsableSpace()用法及代碼示例
- Java File setLastModified()用法及代碼示例
- Java File getPath()用法及代碼示例
- Java File list()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File getParentFile() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。