java.nio.file.Path接口的toFile()方法用于返回表示此路径对象的java.io.File对象。如果此Path与默认提供程序相关联,则此方法返回使用此路径的String表示构造的java.io.File对象。如果此路径是通过调用java.io.File toPath方法创建的,则不能保证此方法返回的File对象等于原始File。如果此Path与默认提供程序不关联,则此方法引发UnsupportedOperationException。
用法:
default File toFile()
参数:此方法不接受任何内容。
返回值:此方法返回一个代表此路径的java.io.File对象。
异常:如果此Path与默认提供程序不关联,则此方法引发UnsupportedOperationException。
以下示例程序旨在说明toFile()方法:
示例1:
// Java program to demonstrate
// java.nio.file.Path.toFile() method
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create object of Path
Path path
= Paths.get("D:\\Apps\\"
+ "NewTextDocument.txt");
// call toFile() to get
// File object from path
File file = path.toFile();
// print file details
System.out.println("File:" + file.toString()
+ " is readable "
+ file.canRead());
}
}
输出:
示例2:
// Java program to demonstrate
// java.nio.file.Path.toFile() method
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create object of Path
Path path = Paths.get("D:\\temp\\"
+ "AmanSinghCV.docx");
// call toFile() to get
// File object from path
File file = path.toFile();
// print file details
System.out.println("File Name:"
+ file.getName());
}
}
输出:
参考文献: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#toFile()
相关用法
- Java Path getFileSystem()用法及代码示例
- Java Path getParent()用法及代码示例
- Java Path toUri()用法及代码示例
- Java Path hashCode()用法及代码示例
- Java Path compareTo()用法及代码示例
- Java Path normalize()用法及代码示例
- Java Path getName(int)用法及代码示例
- Java Path isAbsolute()用法及代码示例
- Java Path getRoot()用法及代码示例
- Java Path toString()用法及代码示例
- Java Path equals()用法及代码示例
- Java Path toAbsolutePath()用法及代码示例
- Java Path getNameCount()用法及代码示例
- Java Path subpath()用法及代码示例
- Java Path startsWith()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path toFile() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。