如何在Android中以编程方式解压缩文件?

发布于 2021-02-02 22:53:34

我需要一个小的代码片段,该片段从给定的.zip文件中解压缩一些文件,并根据压缩文件中的格式提供单独的文件。请发表您的知识并帮助我。

关注者
0
被浏览
303
1 个回答
  • 面试哥
    面试哥 2021-02-02
    为面试而生,有面试问题,就找面试哥。

    peno的版本进行了优化。性能的提高是可以察觉的。

    private boolean unpackZip(String path, String zipname)
    {       
         InputStream is;
         ZipInputStream zis;
         try 
         {
             String filename;
             is = new FileInputStream(path + zipname);
             zis = new ZipInputStream(new BufferedInputStream(is));          
             ZipEntry ze;
             byte[] buffer = new byte[1024];
             int count;
    
             while ((ze = zis.getNextEntry()) != null) 
             {
                 filename = ze.getName();
    
                 // Need to create directories if not exists, or
                 // it will generate an Exception...
                 if (ze.isDirectory()) {
                    File fmd = new File(path + filename);
                    fmd.mkdirs();
                    continue;
                 }
    
                 FileOutputStream fout = new FileOutputStream(path + filename);
    
                 while ((count = zis.read(buffer)) != -1) 
                 {
                     fout.write(buffer, 0, count);             
                 }
    
                 fout.close();               
                 zis.closeEntry();
             }
    
             zis.close();
         } 
         catch(IOException e)
         {
             e.printStackTrace();
             return false;
         }
    
        return true;
    }
    


知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看