Android Rar,zip库

时间:2012-03-20 09:35:43

标签: android zip rar

我必须使用哪个库来处理android上的档案(如rar,zip)。一些示例代码。我找不到任何归档文件的例子。

4 个答案:

答案 0 :(得分:2)

你是拉链还是解压缩? (或两者?) 以前我用ZipInputStream。 您使用的策略可能取决于Zip的存储位置(在SD卡/ APK的资产中/在APK扩展中)。 例如,如果是资产,则可以使用AssetManager将文件作为InputSteam打开。 如果它在SD卡上,您可能需要使用ZipFile

这里有一个Java教程可能会有所帮助: http://java.sun.com/developer/technicalArticles/Programming/compression/

答案 1 :(得分:1)

见这个例子

  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();
                   }
                 }

答案 2 :(得分:0)

对于zip,您可以使用java.util.Zip,对于rar存档我认为您必须通过第三方库

答案 3 :(得分:-4)

右键点击您的项目--->属性---> Java构建路径---->库--->添加外部Jar 然后以任何格式在项目中添加库.zip或.rar