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


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


Java Path接口已添加到Java 7中的Java NIO中。Path接口位於java.nio.file包中,因此Java Path接口的標準名稱是java.nio.file.Path。 Java Path實例表示文件係統中的路徑。路徑可以用來定位文件或目錄。實體的路徑可以是兩種,一種是絕對路徑,另一種是相對路徑。絕對路徑是從根到實體的位置地址,而相對路徑是相對於其他路徑的位置地址。

java.nio.file.Path的compareTo(java.nio.file.Path)方法用於按字典順序比較兩個抽象路徑。通過此方法可以比較兩條路徑。此方法定義的路徑順序是特定於提供程序的,對於默認提供程序,則是特定於平台的。如果參數等於此路徑,則此方法返回零;如果此路徑在字典上小於參數,則返回小於零的值;如果該路徑在字典上大於參數,則返回大於零的值。此方法不訪問文件係統。不需要該文件存在。不能使用此方法來比較與不同文件係統提供程序關聯的路徑。

用法:


int compareTo(Path other)

參數:此方法接受單個參數的另一個路徑,即與當前路徑相比的路徑。

返回值:如果參數等於此路徑,則此方法返回零;如果此路徑在字典上小於參數,則返回小於零的值;如果該路徑在字典上大於參數,則返回大於零的值。

異常:如果路徑與其他提供程序關聯,則拋出此方法和Exception ClassCastException。

以下示例程序旨在說明compareTo(java.nio.file.Path)方法:
示例1:

// Java program to demonstrate 
// Path.compareTo(Path) method 
  
import java.io.IOException; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // create object of Paths 
        Path path1 
            = Paths.get("D:\\eclipse\\configuration"
                        + "\\org.eclipse.update"); 
  
        Path path2 
            = Paths.get("D:\\eclipse\\configuration"
                        + "\\org.eclipse.update"); 
  
        // compare paths 
        int value = path1.compareTo(path2); 
  
        // print result 
        if (value == 0) 
            System.out.println("Both are equal"); 
        else if (value < 0) 
            System.out.println("Path 2 is greater "
                               + "than path 1"); 
        else
            System.out.println("Path 1 is greater "
                               + "than path 2"); 
    } 
}
輸出:
Both are equal

示例2:

// Java program to demonstrate 
// Path.compareTo(Path) method 
  
import java.io.IOException; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // create object of Paths 
        Path path1 
            = Paths.get("D:\\eclipse\\configuration"
                        + "\\org.eclipse.update"); 
  
        Path path2 
            = Paths.get("D:\\temp\\Spring"); 
  
        // compare paths 
        int value = path1.compareTo(path2); 
  
        // print result 
        if (value == 0) 
            System.out.println("Both are equal"); 
        else if (value < 0) 
            System.out.println("Path 2 is greater "
                               + "than path 1"); 
        else
            System.out.println("Path 1 is greater "
                               + "than path 2"); 
    } 
}
輸出:
Path 2 is greater than path 1

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



相關用法


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