在java中的file.lists()中排除系统文件

前端之家收集整理的这篇文章主要介绍了在java中的file.lists()中排除系统文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 java.io.File中使用方法File.listFiles()获取文件列表,但它返回一些系统文件,如(.sys等)..我需要排除所有系统相关文件( Windows,Linux,Mac)返回列表时.任何人都可以解决我的问题吗?

解决方法

我将实现一个简单的FileFilter,其逻辑用于确定文件是否为系统文件,并以 AlexR showed in his answer的方式使用它的实例.这样的事情(规则a仅用于演示目的!):
public class IgnoreSystemFileFilter implements FileFilter {

   Set<String> systemFileNames = new HashSet<String>(Arrays.asList("sys","etc"));

   @Override
   public boolean accept(File aFile) {

     // in my scenario: each hidden file starting with a dot is a "system file"
     if (aFile.getName().startsWith(".") && aFile.isHidden()) {
       return false;
     }

     // exclude known system files
     if (systemFileNames.contains(aFile.getName()) {
       return false;
     }

     // more rules / other rules

     // no rule matched,so this is not a system file
     return true;
 }
原文链接:https://www.f2er.com/java/239901.html

猜你在找的Java相关文章