在内部压缩文件 Commons VFS 中查找文件

Find files in inner zipfile Commons VFS

是否可以使用 FileObject::findFiles 方法或类似的方法来搜索存储在文件夹中的 ZIP 文件?还是我必须自己打开压缩文件?

FileObject root = vfs.resolveFile(file:///home/me/test/vfsdir);
// shows everything except the content of the zip 
FileObject[] allFiles = root.findFiles(Selectors.SELECT_ALL);    
// should contain only the three xmls
FileObject[] xmlFiles = root.findFiles(xmlSelector);

VFS 目录树

/ (root)
/folderwithzips
/folderwithzips/myzip.zip (Zipfile not a folder)
/folderwithzips/myzip.zip/myfile.xml
/folderwithzips/myzip.zip/myfile2.xml
/folderwithzips/other.zip 
/folderwithzips/other.zip/another.xml

遗憾的是,无法像搜索文件夹一样搜索 VFS 中的 zip 内容。

所以我必须手动加载每个 zip 并对内容执行我的选择器。

这个小方法对我有用。

public static void main(String[] vargs) throws FileSystemException {
    FileSystemManager manager = VFS.getManager();
    FileObject root = manager.resolveFile("/home/me/test/vfsdir");

    List<FileObject> files = findFiles(root, new XMLSelector());
    files.stream().forEach(System.out::println);
}

public static List<FileObject> findFiles(FileObject root,FileSelector fileSelector) throws FileSystemException {
    List<FileObject> filesInDir = Arrays.asList(root.findFiles(fileSelector));
    FileObject[] zipFiles = root.findFiles(new ZipSelector());

    FileSystemManager manager = VFS.getManager();

    List<FileObject> filesInZips = new ArrayList<>();
    for (FileObject zip: zipFiles){
        FileObject zipRoot = manager.createFileSystem(zip);
        Stream.of(zipRoot.findFiles(fileSelector)).forEach(filesInZips::add);
    }

    return Stream.concat(filesInDir.stream(),filesInZips.stream()).collect(Collectors.toList());
}