当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Path getFileSystem()用法及代码示例


Path接口已添加到Java 7中的Java NIO中。Path接口位于java.nio.file包中,因此Java Path接口的标准名称是java.nio.file.Path。 Java Path实例表示文件系统中的路径。路径可以用来定位文件或目录。实体的路径可以是两种,一种是绝对路径,另一种是相对路径。绝对路径是从根到实体的位置地址,而相对路径是相对于其他路径的位置地址。

java.nio.file.Path的getFileSystem()方法用于返回创建此Path对象的文件系统。

用法:


FileSystem getFileSystem()

参数:此方法不接受任何内容。

返回值:此方法返回创建此Path对象的文件系统。

以下示例程序旨在说明getFileSystem()方法:
示例1:

// Java program to demonstrate 
// java.nio.file.Path.getFileSystem() method 
  
import java.io.IOException; 
import java.nio.file.FileSystem; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // create object of Path 
        Path path 
            = Paths.get("D:/workspace/AmanCV.docx"); 
  
        // call getFileSystem() 
        // and get FileSystem object 
        FileSystem fs = path.getFileSystem(); 
  
        // print separator of FileSystem 
        System.out.println("Separator used for FileSystem: "
                           + fs.getSeparator()); 
    } 
}
输出:
Separator used for FileSystem: /

示例2:

// Java program to demonstrate 
// java.nio.file.Path.getFileSystem() method 
  
import java.io.IOException; 
import java.nio.file.FileSystem; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // create object of Path 
        Path path = Paths.get("D:/Resume.pdf"); 
  
        // call getFileSystem() 
        // and get FileSystem object 
        FileSystem fs = path.getFileSystem(); 
  
        // print FileSystem is ReadOnly or not 
        System.out.println("FileSystem is ReadOnly: "
                           + fs.isReadOnly()); 
    } 
}
输出:
FileSystem is ReadOnly: false

参考文献: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#getFileSystem()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path getFileSystem() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。