解压特定zip压缩文件中特定文件,Java

x33g5p2x  于2022-06-30 转载在 Java  
字(1.0k)|赞(0)|评价(0)|浏览(599)

解压特定zip压缩文件中指定文件,Java

有些时候,zip压缩文件特别大动辄几大GB,但是只想要其中某一个特定文件,此时就完全没必要把全量文件都解压出来,只需解压指定文件即可。

  1. public static void decompress(String targetFileName, String srcPath, String destPath) throws Exception {
  2. File file = new File(srcPath);
  3. if (!file.exists()) {
  4. throw new RuntimeException(srcPath + "不存在");
  5. }
  6. ZipFile zf = new ZipFile(file);
  7. Enumeration entries = zf.entries();
  8. ZipEntry entry;
  9. while (entries.hasMoreElements()) {
  10. entry = (ZipEntry) entries.nextElement();
  11. String name = entry.getName();
  12. if (!name.endsWith(targetFileName)) {
  13. continue;
  14. }
  15. File dir = new File(destPath);
  16. if (!dir.exists()) {
  17. dir.mkdirs();
  18. }
  19. File f = new File(dir + File.separator + targetFileName);
  20. if (!f.exists()) {
  21. f.createNewFile();
  22. }
  23. InputStream is = zf.getInputStream(entry);
  24. FileOutputStream fos = new FileOutputStream(f);
  25. int count;
  26. byte[] buffer = new byte[1024 * 8];
  27. while (true) {
  28. count = is.read(buffer);
  29. if (count == -1) {
  30. break;
  31. }
  32. fos.write(buffer, 0, count);
  33. }
  34. is.close();
  35. fos.close();
  36. }
  37. }

上面功能函数首先从srcPath加载zip压缩文件,然后对zip压缩文件里面包含的每个文件进行过滤筛选,搜索到名字为targetFileName的文件后,将其解压到destPath目录文件夹下。

相关文章

最新文章

更多