我正在尝试列出zip文件夹中的文件。我知道我可以使用zip4j库或java ZipFile
类。
我的问题是使用这些工具之一,如何列出zip中给定目录中的文件?
答案 0 :(得分:0)
只用ZipInputStream来解决任务。
final String folderNameToBrowse = "folder_name";
final String archivePath = "archive.zip";
final Path pathToBrowse = Paths.get(folderNameToBrowse);
ZipInputStream zis = new ZipInputStream(new FileInputStream(archivePath));
ZipEntry temp = null;
while ( (temp = zis.getNextEntry()) != null) {
if(!temp.isDirectory()){
Path currentPath = Paths.get(temp.getName());
if(pathToBrowse.equals(currentPath.getParent())){
// Here is the file name
System.out.println(currentPath.getFileName());
}
}
}