Java Path equals()方法及示例
在Java 7中,Java Path接口 被添加到Java NIO中。Path接口位于java.nio.file包中,所以Java Path接口的完全限定名称是java.nio.file.Path。一个Java Path实例代表文件系统中的一个路径。路径可以用来定位文件或目录。实体的路径有两种类型,一种是绝对路径,另一种是相对路径。绝对路径是指从根到实体的位置地址,而相对路径是指相对于其他路径的位置地址。
java.nio.file.Path 的 equals() 方法用于比较该路径与作为参数的传递对象是否相等。如果给定的对象不是Path,或者是与不同的FileSystem关联的Path,那么该方法返回false。如果且仅当给定对象是一个与此Path相同的Path时,此方法返回true。
语法
boolean equals(Object other)
参数: 该方法接受一个参数,即用于比较的其他对象。
返回值: 当且仅当给定的对象是一个与此路径相同的路径时,该方法返回真。
下面的程序说明了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()