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


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


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

java.nio.file.Path的equals()方法用于将此路径的相等性与传递的对象作为参数进行比较。如果给定的对象不是Path还是与其他FileSystem关联的Path,则此方法返回false。仅当给定对象是与此路径相同的Path时,此方法才返回true。

用法:


boolean equals(Object other)

参数:此方法接受一个参数,另一个参数用于比较。

返回值:仅当给定对象是与此路径相同的Path时,此方法才返回true。

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

// Java program to demonstrate 
// java.nio.file.Path.equals() 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 for equality 
        boolean response 
            = path1.equals(path2); 
  
        // print result 
        if (response) 
            System.out.println("Both are equal"); 
        else
            System.out.println("Both are not equal"); 
    } 
}
输出:
Both are equal

示例2:

// Java program to demonstrate 
// java.nio.file.Path.equals() 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 for equality 
        boolean response = path1.equals(path2); 
  
        // print result 
        if (response) 
            System.out.println("Both are equal"); 
        else
            System.out.println("Both are not equal"); 
    } 
}
输出:
Both are not equal

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



相关用法


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