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


Java Path normalize()用法及代碼示例


java.nio.file.Path的normalize()方法用於從當前路徑返回路徑,在該路徑中消除了所有冗餘名稱元素。
此方法的精確定義取決於實現,並且它派生出不包含冗餘名稱元素的路徑。在許多文件係統中,“.”和“..”是表示當前目錄和父目錄的特殊名稱。在那些情況下,所有出現的“.”都被認為是冗餘的,並且如果“..”的前麵帶有非“..”名稱,則這兩個名稱都被認為是冗餘的。

用法:

Path normalize()

參數:此方法不接受任何內容。是少參數方法。


返回值:此方法返回結果路徑;如果該路徑不包含冗餘名稱元素,則返回此路徑;否則,返回此路徑。如果此路徑沒有根組件並且所有名稱元素都是冗餘的,則返回一個空路徑。

以下示例程序旨在說明normalize()方法:
示例1:

// Java program to demonstrate 
// java.nio.file.Path.normalize() method 
  
import java.nio.file.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create object of Path 
        // In this example \\.. starts with non".." 
        // element 
        Path path 
            = Paths.get("D:\\..\\..\\.\\p2\\core"
                        + "\\cache\\binary"); 
  
        // print actual path 
        System.out.println("Actual Path : "
                           + path); 
  
        // normalize the path 
        Path normalizedPath = path.normalize(); 
  
        // print normalized path 
        System.out.println("\nNormalized Path : "
                           + normalizedPath); 
    } 
}
輸出:

示例2:

// Java program to demonstrate 
// java.nio.file.Path.normalize() method 
  
import java.nio.file.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create object of Path 
        Path path 
            = Paths.get("\\.\\.\\core"
                        + "\\file\\binary.java"); 
  
        // print actual path 
        System.out.println("Actual Path : "
                           + path); 
  
        // normalize the path 
        Path normalizedPath = path.normalize(); 
  
        // print normalized path 
        System.out.println("\nNormalized Path : "
                           + normalizedPath); 
    } 
}
輸出:

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#normalize()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Path normalize() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。