Java zip解压及读取
2021/7/28 14:07:30
本文主要是介绍Java zip解压及读取,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
解压读取:
import com.alibaba.fastjson.JSONObject; import java.io.*; import java.util.ArrayList; import java.util.Enumeration; import java.util.List; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; public class Decompressing { public static void zipUncompress(String inputFile) throws Exception { File srcFile = new File(inputFile); // 判断源文件是否存在 if (!srcFile.exists()) { throw new Exception(srcFile.getPath() + "所指文件不存在"); } String destDirPath = inputFile.replace(".zip", ""); //创建压缩文件对象 ZipFile zipFile = new ZipFile(srcFile); //开始解压 Enumeration<?> entries = zipFile.entries(); while (entries.hasMoreElements()) { ZipEntry entry = (ZipEntry) entries.nextElement(); // 如果是文件夹,就创建个文件夹 if (entry.isDirectory()) { srcFile.mkdirs(); } else { // 如果是文件,就先创建一个文件,然后用io流把内容copy过去 File targetFile = new File(destDirPath + "/" + entry.getName()); // 保证这个文件的父文件夹必须要存在 if (!targetFile.getParentFile().exists()) { targetFile.getParentFile().mkdirs(); } targetFile.createNewFile(); // 将压缩文件内容写入到这个文件中 InputStream is = zipFile.getInputStream(entry); FileOutputStream fos = new FileOutputStream(targetFile); int len; byte[] buf = new byte[1024]; while ((len = is.read(buf)) != -1) { fos.write(buf, 0, len); } // 关流顺序,先打开的后关闭 fos.close(); is.close(); } } } public static void readFiles(String inputFile) throws Exception { File srcFile = new File(inputFile); if (srcFile.isDirectory()) { File next[] = srcFile.listFiles(); for (int i = 0; i < next.length; i++) { System.out.println(next[i].getName()); if(!next[i].isDirectory()){ BufferedReader br = new BufferedReader(new FileReader(next[i])); List<String> arr1 = new ArrayList<>(); String contentLine ; while ((contentLine = br.readLine()) != null) { JSONObject js = JSONObject.parseObject(contentLine); arr1.add(contentLine); } System.out.println(arr1); } } } } public static void main(String[] args) { try { String path = "E:\\data\\test\\aaa.zip"; zipUncompress(path); readFiles(path.replace(".zip", "")); } catch (Exception e) { e.printStackTrace(); } } }
这篇关于Java zip解压及读取的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20RabbitMQ教程:新手入门指南
- 2024-11-20Redis教程:新手入门指南
- 2024-11-20SaToken教程:新手入门指南
- 2024-11-20SpringBoot教程:从入门到实践
- 2024-11-20Java全栈教程:从入门到实战
- 2024-11-20Java微服务系统教程:入门与实践指南
- 2024-11-20Less教程:初学者快速上手指南
- 2024-11-20MyBatis教程:新手快速入门指南
- 2024-11-20QLExpress教程:初学者快速入门指南
- 2024-11-20订单系统教程:从入门到实践的全面指南