如何在 java 中搜索目录中的文件


List() 方法是 File 类的方法,它返回一个 String 数组,包含当前 (File) 对象表示的路径中所有文件和目录的名称。

为了搜索文件,你需要使用 equals() 方法比较目录中每个文件的文件名和所需文件的名称。

示例

实时演示

import java.io.File;
import java.util.Arrays;
import java.util.Scanner;
public class Example {
   public static void main(String[] argv) throws Exception {
      System.out.println("Enter the directory path: ");
      Scanner sc = new Scanner(System.in);
      String pathStr = sc.next();        
      System.out.println("Enter the desired file name: ");
      String file = sc.next();
      System.out.println(file);      
      File dir = new File(pathStr);
      String[] list = dir.list();
      System.out.println(Arrays.toString(list));
      boolean flag = false;      
      for (int i = 0; i < list.length; i++) {
         if(file.equals(list[i])){
            flag = true;
         }
      }        
      if(flag){
         System.out.println("File Found");
      }else{
         System.out.println("File Not Found");
      }
   }
}

输出

Enter the directory path:
D:\ExampleDirectory
Enter the desired file name:
demo2.pdf
demo2.pdf
[demo1.pdf, demo2.pdf, sample directory1, sample directory2, sample directory3, sample directory4, sample_jpeg1.jpg, sample_jpeg2.jpg, test1.docx, test2.docx]
File Found

String[] list(FilenameFilter filter) 方法是 File 类的另一个方法,它返回一个 String 数组,包含当前 (File) 对象表示的路径中所有文件和目录的名称。但是,返回的数组包含根据指定过滤器进行筛选的文件名。FilenameFilter 是 Java 中的接口,只有一个方法。

accept(File dir, String name)

为了搜索一个文件名,你需要实现一个 FilenameFilter 来匹配所需文件的文件名。

示例

实时演示

import java.io.File;
import java.io.FilenameFilter;
public class Example {
   public static void main(String[] argv) throws Exception {
      File dir = new File("D:\ExampleDirectory");
      FilenameFilter filter = new FilenameFilter() {
         public boolean accept(File dir, String name) {
            return name.equalsIgnoreCase("demo1.pdf");
         }
      };
      String[] files = dir.list(filter);
      if (files == null) {
         System.out.println("File Not Found");
      }else {
          System.out.println("File Found");
      }
   }
}

输出

File Found

更新时间: 08-Feb-2021

4K+ 浏览次数

开启您的职业生涯

完成课程,获得认证

开始学习
广告