解压zip压缩文件,Java

x33g5p2x  于2022-07-10 转载在 Java  
字(0.9k)|赞(0)|评价(0)|浏览(502)

解压zip压缩文件,Java

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

传入一个压缩文件(srcPath),然后将压缩文件的内容(文件,目录)递归的解压到目的路径(destPath)下重建文件层次结构。

解压特定zip压缩文件中特定文件,Java_zhangphil的博客-CSDN博客

https://zhangphil.blog.csdn.net/article/details/125522938?spm=1001.2014.3001.5502

相关文章

最新文章

更多