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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。