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并设置文件的父级
相关用法
- Java Path getParent()用法及代码示例
- Java Logger getParent()用法及代码示例
- Java File setLastModified()用法及代码示例
- Java File getAbsolutePath()用法及代码示例
- Java File getAbsoluteFile()用法及代码示例
- Java File getCanonicalPath()用法及代码示例
- Java File isFile()用法及代码示例
- Java File setReadOnly()用法及代码示例
- Java File listFiles()用法及代码示例
- Java File getName()用法及代码示例
- Java File mkdirs()用法及代码示例
- Java File createTempFile()用法及代码示例
- Java File getUsableSpace()用法及代码示例
- Java File length()用法及代码示例
- Java File setExecutable()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 File getParent() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。