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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。