0

是否可以打开 zip 文件并像文件夹一样使用它。我需要一次从数百个 ZIP 文件中对一个文件夹进行部分解压缩。标准迭代非常慢(假设我需要打开 ID=432 的文件夹,所以之前会检查 431 个文件夹)。有什么方法可以部分快速地从 zip 中解压缩一些数据?

谢谢

4

2 回答 2

2

看到这个例子它可能对你有帮助。

public void unzip() {
                   try  {
                     FileInputStream fin = new FileInputStream(_zipFile);
                     ZipInputStream zin = new ZipInputStream(fin);
                     ZipEntry ze = null;
                     while ((ze = zin.getNextEntry()) != null) {
                       Log.v("Decompress", "Unzipping " + ze.getName());
                       System.out.println("^^^^^^UnzippingFile^"+ze.getName());
                       ///code to search is given string exists or not in a Sentence
                       String haystack = ze.getName();
                       String needle1 = ".DS_Store";
                       int index1 = haystack.indexOf(needle1);
                       if (index1 != -1)
                       {
                           System.out.println("The string contains the substring "
+ needle1);
                           continue;
                       }
                       /*else
                           System.out.println("The string does not contain the
substring " + needle1);*/


                       if(ze.isDirectory()) {
                         _dirChecker(ze.getName());
                       } else {
                         FileOutputStream fout = new FileOutputStream(_location +
ze.getName());
                      // replace for loop with:
                         byte[] buffer = new byte[1024];
                         int length;
                         while ((length = zin.read(buffer))>0) {
                         fout.write(buffer, 0, length);
                         }

                         zin.closeEntry();
                         fout.close();
                       }




                     }////Outer While
                     zin.close();
                   } catch(Exception e) {
                     Log.e("Decompress", "unzip", e);
                   }

                 }

                 private void _dirChecker(String dir) {
                   File f = new File(_location + dir);

                   if(!f.isDirectory()) {
                     f.mkdirs();
                   }
                 }
于 2012-04-04T08:21:34.083 回答
0

看看这里getEntry的方法。ZipFile

于 2012-04-04T08:16:50.583 回答