Android端解压zip文件(包含中文目录)

这篇博客不算原创,原作者的文章对我起到很大作用,我这里就算是做个笔记,因为不满足转载的条件,所以也不算转载。

好的,感谢原作者的技术分享,几乎不需要更改什么。感谢感谢,原文地址:点击打开链接


上代码:

/**
   * 使用 org.apache.tools.zip.ZipFile 解压文件,它与 java 类库中的
   * java.util.zip.ZipFile 使用方式是一新的,只不过多了设置编码方式的
   * 接口。
   *
   * 注,apache 没有提供 ZipInputStream 类,所以只能使用它提供的ZipFile
   * 来读取压缩文件。
   * @param archive 压缩包路径
   * @param decompressDir 解压路径
   * @throws IOException
   * @throws FileNotFoundException
   * @throws ZipException
   */
            public static void readByApacheZipFile(String archive, String decompressDir) throws IOException, FileNotFoundException, ZipException {
                        BufferedInputStream bi;
                        ZipFile zf = new ZipFile(archive, "GBK");//支持中文
                        Enumeration e = zf.getEntries();
                        while (e.hasMoreElements()) {
                        ZipEntry ze2 = (ZipEntry) e.nextElement();
                        String entryName = ze2.getName();
                        String path = decompressDir + "/" + entryName;
                        if (ze2.isDirectory()) {
                        System.out.println("正在创建解压目录 - " + entryName);
                        File decompressDirFile = new File(path);
                        if (!decompressDirFile.exists()) {
                        decompressDirFile.mkdirs();
                        }
                        } else {
                        System.out.println("正在创建解压文件 - " + entryName);
                        String fileDir = path.substring(0, path.lastIndexOf("/"));
                        File fileDirFile = new File(fileDir);
                        if (!fileDirFile.exists()) {
                        fileDirFile.mkdirs();
                        }
                        BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(decompressDir + "/" + entryName));
                        bi = new BufferedInputStream(zf.getInputStream(ze2));
                        byte[] readContent = new byte[1024];
                        int readCount = bi.read(readContent);
                        while (readCount != -1) {
                        bos.write(readContent, 0, readCount);
                        readCount = bi.read(readContent);
                        }
                        bos.close();
                        }
                        }
                        zf.close();
             }

    /**
   * 使用 java api 中的 ZipInputStream 类解压文件,但如果压缩时采用了
   * org.apache.tools.zip.ZipOutputStream时,而不是 java 类库中的
   * java.util.zip.ZipOutputStream时,该方法不能使用,原因就是编码方
   * 式不一致导致,运行时会抛如下异常:
   * java.lang.IllegalArgumentException
   * at java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:290)
   *
   * 当然,如果压缩包使用的是java类库的java.util.zip.ZipOutputStream
   * 压缩而成是不会有问题的,但它不支持中文
   *
   * @param archive 压缩包路径
   * @param decompressDir 解压路径
   * @throws FileNotFoundException
   * @throws IOException
   */
            public  void readByZipInputStream(String archive, String decompressDir) throws FileNotFoundException, IOException {
                    BufferedInputStream bi;
                    //----解压文件(ZIP文件的解压缩实质上就是从输入流中读取数据):
                    System.out.println("开始读压缩文件");
                    FileInputStream fi = new FileInputStream(archive);
                    CheckedInputStream csumi = new CheckedInputStream(fi, new CRC32());
                    ZipInputStream in2 = new ZipInputStream(csumi);
                    bi = new BufferedInputStream(in2);
                    java.util.zip.ZipEntry ze;//压缩文件条目
                    //遍历压缩包中的文件条目
                            while ((ze = in2.getNextEntry()) != null) {
                                    String entryName = ze.getName();
                                    if (ze.isDirectory()) {
                                    System.out.println("正在创建解压目录 - " + entryName);
                                    File decompressDirFile = new File(decompressDir + "/" + entryName);
                                    if (!decompressDirFile.exists()) {
                                    decompressDirFile.mkdirs();
                    }
                    } else {
                                System.out.println("正在创建解压文件 - " + entryName);
                                BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(decompressDir + "/" + entryName));
                                byte[] buffer = new byte[1024];
                                int readCount = bi.read(buffer);
                                while (readCount != -1) {
                                bos.write(buffer, 0, readCount);
                                readCount = bi.read(buffer);
                            

                                }
                                bos.close();
                                }
                                }

                                bi.close();
                                System.out.println("Checksum: " + csumi.getChecksum().getValue());
            }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值