zoukankan      html  css  js  c++  java
  • 压缩和解压缩(I)

    ZipArchive

    压缩方法

     1 -(void)zipArchiveWithFiles
     2     {
     3          //创建解压缩对象
     4          ZipArchive *zip = [[ZipArchive alloc]init];
     5          //Caches路径
     6          NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)lastObject];
     7          //zip压缩包保存路径
     8          NSString *path = [cachesPath stringByAppendingPathComponent:@"ZipArchive.zip"];//创建不带密码zip压缩包
     9          //创建zip压缩包
    10          [zip CreateZipFile2:path];
    11          //创建带密码zip压缩包
    12          //[zip CreateZipFile2:path Password:@"ZipArchive.zip"];
    13         //添加到zip压缩包的文件
    14          [zip addFileToZip:@"/Users/apple/Desktop/demo/LaunchImage-2-700-568h@2x.png" newname:@"1.png"];
    15          [zip addFileToZip:@"/Users/apple/Desktop/demo/LaunchImage-2-700@2x.png" newname:@"2.png"];
    16          [zip addFileToZip:@"/Users/apple/Desktop/demo/LaunchImage-2-800-667h@2x.png" newname:@"3.png"];
    17          [zip addFileToZip:@"/Users/apple/Desktop/demo/LaunchImage-2-800-Landscape-736h@3x.png" newname:@"4.png"];
    18          //关闭压缩
    19          BOOL success = [zip CloseZipFile2];
    20      }
    View Code

    解压缩方法

     1 -(void)uZipArchive
     2     {
     3          //创建解压缩对象
     4          ZipArchive *zip = [[ZipArchive alloc]init];
     5          //Caches路径
     6          NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)lastObject];
     7        //解压目标路径
     8          NSString *savePath =[cachesPath stringByAppendingPathComponent:@"ZipArchive"];
     9        //zip压缩包的路径
    10          NSString *path = [cachesPath stringByAppendingPathComponent:@"ZipArchive.zip"];
    11          //解压不带密码压缩包
    12          [zip UnzipOpenFile:path];
    13          //解压带密码压缩包
    14          //[zip UnzipOpenFile:path Password:@"ZipArchive.zip"];
    15          //解压
    16          [zip UnzipFileTo:savePath overWrite:YES];
    17          //关闭解压
    18          BOOL success = [zip UnzipCloseFile];
    19      }
    View Code
  • 相关阅读:
    CMDB 理论
    分布式
    闲着无聊 一个python的,三级菜单。装逼版。
    献上一段,派遣网易云音乐,音频的代码。
    redis 安装
    selenium之 chromedriver与chrome版本映射表(更新至v2.46)
    简单的爬虫
    anaconda使用方法
    crm开发之用户重置密码
    模块和包,logging模块
  • 原文地址:https://www.cnblogs.com/EchoHG/p/9064967.html
Copyright © 2011-2022 走看看