Java - File equals() 方法



描述

Java File equals(File pathname) 方法用于测试此抽象路径名与作为参数的对象是否相等。这两个抽象路径名是否相等取决于操作系统。

声明

以下是 java.io.File.equals(Object obj) 方法的声明:-

public boolean equals(Object obj)

Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career.

参数

obj - 要与抽象路径名进行比较的对象

返回值

如果且仅当对象相同,则方法返回布尔值 true;否则返回 false。

异常

示例 1

以下示例演示了 Java File equals() 方法的使用。我们创建了两个 File 引用。然后,我们使用 test.txt 和 test1.txt 文件创建这些 File 对象。使用 equals() 方法,我们按字典顺序比较相同文件的路径并打印结果。然后,我们比较两个不同的文件并打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      boolean bool = false;
      
      try {
         // create new files
         f = new File("test.txt");
         f1 = new File("test1.txt");
         
         // returns boolean
         bool = f.equals(f);
         
         // prints
         System.out.println("Equal: "+bool);
         
         // returns boolean
         bool = f.equals(f1);
         
         // prints
         System.out.print("Equal: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果 - 假设我们在给定位置拥有 test.txt 和 test1.txt 文件。

Equal: true

示例 2

以下示例演示了 Java File equals() 方法的使用。我们创建了两个 File 引用。然后,我们使用 test.txt 和 test1.txt 文件创建这些 File 对象。使用 equals() 方法,我们比较两个不同的文件并打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      boolean bool = false;
      
      try {
         // create new files
         f = new File("test.txt");
         f1 = new File("test1.txt");
         
         // returns boolean
         bool = f.equals(f);
         
         // prints
         System.out.println("Equal: "+bool);
         
         // returns boolean
         bool = f.equals(f1);
         
         // prints
         System.out.print("Equal: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果 - 假设我们在给定位置拥有 test.txt 和 test1.txt 文件。

Equal: false
java_file_class.htm
广告