如何压缩android中的文件

时间:2011-06-29 14:28:33

标签: android

我需要以编程方式压缩文本文件。

我在文件directory(context.getFilesDirectory())
创建了文本文件 我想压缩文本文件并将压缩文件添加到Intent对象。

请给我一段代码来说明如何压缩android中的文件。

3 个答案:

答案 0 :(得分:6)

如果你在SDCard中有一个FOLDER而你想创建它的拉链,那么只需将这个代码复制并粘贴到你的项目中它就会给你一个zip文件夹。此代码将创建一个文件夹的zip文件夹,该文件夹仅包含不应嵌套文件夹的文件。您可以进一步修改自己。

 String []s=new String[2]; //declare an array for storing the files i.e the path of your source files
  s[0]="/mnt/sdcard/Wallpaper/pic.jpg";    //Type the path of the files in here
  s[1]="/mnt/sdcard/Wallpaper/Final.pdf"; // path of the second file

  zip((s,"/mnt/sdcard/MyZipFolder.zip");    //call the zip function


 public void zip(String[] files, String zipFile) 
 { 
    private String[] _files= files;
    private String _zipFile= zipFile;  

try  { 
  BufferedInputStream origin = null; 
  FileOutputStream dest = new FileOutputStream(_zipFile); 

  ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(dest)); 

  byte data[] = new byte[BUFFER]; 

  for(int i=0; i < _files.length; i++) { 
      Log.d("add:",_files[i]);
    Log.v("Compress", "Adding: " + _files[i]); 
    FileInputStream fi = new FileInputStream(_files[i]); 
    origin = new BufferedInputStream(fi, BUFFER); 
    ZipEntry entry = new ZipEntry(_files[i].substring(_files[i].lastIndexOf("/") + 1)); 
    out.putNextEntry(entry); 
    int count; 
    while ((count = origin.read(data, 0, BUFFER)) != -1) { 
      out.write(data, 0, count); 
    } 
    origin.close(); 
  } 

  out.close(); 
} catch(Exception e) { 
  e.printStackTrace(); 
} 

}

  

还使用此代码在android-manifest.xml中添加权限

  <uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />

答案 1 :(得分:0)

如果您想使用密码压缩文件,可以查看this library,您需要将这些行添加到build.gradle:

dependencies {
compile 'com.github.ghost1372:Mzip-Android:0.4.0'
}

这是zip文件的代码:

<强>邮编:

ZipArchive zipArchive = new ZipArchive();
zipArchive.zip(targetPath,destinationPath,password);

答案 2 :(得分:0)

这是用于压缩文件的工作代码。您必须将要压缩的所有文件路径添加到arrayList中,并将其作为参数发送到下面的函数以及所需的zipfile的字符串名称。

 public String zipper(ArrayList<String> allFiles, String zipFileName) throws IOException
    {
        timeStampOfZipFile =new SimpleDateFormat("HH:mm:ss").format(Calendar.getInstance().getTime());
        App.mediaStorageDir.mkdirs();
        zippath = App.mediaStorageDir.getAbsolutePath() + "/" + zipFileName+ timeStampOfZipFile +  ".zip";
        try
        {
            if (new File(zippath).exists())
            {
                new File(zippath).delete();
            }
            //new File(zipFileName).delete(); // Delete if exists
            ZipFile zipFile = new ZipFile(zippath);
            ZipParameters zipParameters = new ZipParameters();
            zipParameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
            zipParameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
            zipParameters.setPassword("Reset");

            if (allFiles.size() > 0)
            {
                for (String fileName : allFiles)
                {
                    File file = new File(fileName);
                    zipFile.addFile(file, zipParameters);
                }
            }


        }
        catch (ZipException e)
        {
            e.printStackTrace();
        }
        return zippath;
    }

此处App.mediaStorageDir.mkdirs(); 其中mediaStorage是我的App.class

中的静态最终字符串
public static final File mediaStorageDir = new File(Environment.getExternalStorageDirectory(),
            "yourAppFoler");

创建将保存zip文件的目录。函数结果返回zip文件路径,可用于附加到多部分实体以将其发送到服务器(如果您愿意)。

需要API&gt; = marshmellow

的运行时权限
  <!-- == External Storage == -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>