当前位置: > > > Swift - 使用SSZipArchive实现文件的压缩、解压缩

Swift - 使用SSZipArchive实现文件的压缩、解压缩

通常我们为了节约流量,传输多个文件的时候需要将它们打包成Zip文件再传输,或者把下载下来的Zip包进行解压。本文介绍如何使用 ZipArchive 进行文件的压缩、解压操作。

1,SSZipArchive介绍
SSZipArchive是一个使用Objective-C编写的在iOS、Mac下的压缩、解压缩工具类。
GitHub地址:https://github.com/ZipArchive/ZipArchive
功能如下:
(1)解压zip文件
(2)解压带密码保护的zip文件
(3)创建zip文件
(4)添加新文件到zip文件中
(5)压缩文件
(6)使用一个名字来压缩NSData对象

2,SSZipArchive的安装配置
(1)将下载下来的 SSZipArchive 文件夹添加到项目中来

(2)创建桥接头文件 bridge.h 来包含需要引用的Objective-C头文件,内容如下:
#import "ZipArchive.h"
(3)在项目target -> Build Phases -> Link Binary With Libraries中点击加号,添加 libz.dylib  

3,使用样例
首先为了便于后面测试,我们先在项目中添加两张图片,以及两个压缩包文件(其中 test_password.zip 是带密码的压缩包,密码是:hangge.com)

同时定义一个方法返回目标路径(每次调用都会在程序的 Caches 下创建一个随机文件夹),为的是让每次压缩、解压缩的目标保存地址都不会冲突:
//在Caches文件夹下随机创建一个文件夹,并返回路径
func tempDestPath() -> String? {
    var path = NSSearchPathForDirectoriesInDomains(.CachesDirectory,
        .UserDomainMask, true)[0]
    path += "/\(NSUUID().UUIDString)"
    let url = NSURL(fileURLWithPath: path)
    
    do {
        try NSFileManager.defaultManager().createDirectoryAtURL(url,
            withIntermediateDirectories: true, attributes: nil)
    } catch {
        return nil
    }
    
    if let path = url.path {
        print("path:\(path)")
        return path
    }
    
    return nil
}

(1)解压普通zip文件
let zipPath   = NSBundle.mainBundle().pathForResource("test", ofType: "zip")
SSZipArchive.unzipFileAtPath(zipPath, toDestination: tempDestPath())
注意:默认情况下如果解压路径下有同名文件,是会被新文件覆盖的。如果不想覆盖,可以把 overwrite 参数设成false(如果没有密码则 password 设为nil)
let zipPath   = NSBundle.mainBundle().pathForResource("test", ofType: "zip")
try! SSZipArchive.unzipFileAtPath(zipPath, toDestination: tempDestPath(),
                                  overwrite: false, password: nil)

(2)解压带密码的zip文件
let zipPath2   = NSBundle.mainBundle().pathForResource("test_password", ofType: "zip")

do {
    try SSZipArchive.unzipFileAtPath(zipPath2, toDestination: tempDestPath(),
        overwrite: true, password: "hangge.com")
} catch {
}

(3)将文件打成压缩包
let files = [NSBundle.mainBundle().pathForResource("logo", ofType: "png")!,
    NSBundle.mainBundle().pathForResource("icon", ofType: "png")!]

let zipPath3 = tempDestPath()! + "/hangge.zip"

SSZipArchive.createZipFileAtPath(zipPath3, withFilesAtPaths: files)
   当然我们也是可以给压缩包加上密码的:
SSZipArchive.createZipFileAtPath(zipPath3, withFilesAtPaths: files,
    withPassword: "hangge.com")

(4)将整个文件夹下的文件打成压缩包
//需要压缩的文件夹啊
let filePath:String = NSHomeDirectory() + "/Documents"
//先在该文件夹下添加一个文件
let image = UIImage(named: "logo.png")
let data:NSData = UIImagePNGRepresentation(image!)!
data.writeToFile(filePath + "/logo.png", atomically: true)


let zipPath5 = tempDestPath()! + "/hangge.zip"
SSZipArchive.createZipFileAtPath(zipPath5, withContentsOfDirectory: filePath)
   同样的,我门也可以添加密码:
SSZipArchive.createZipFileAtPath(zipPath6, withContentsOfDirectory: filePath,
    withPassword: "hangge.com") //带密码

源码下载:hangge_993.zip
评论4
  • 4楼
    2018-05-22 15:19
    波一袄彪

    https://yq.aliyun.com/ziliao/26505
    阿里直接使用了你的文章,并没有署名

    站长回复

    谢谢你的反馈。还真是这样,而且把我图片的水印也覆盖了,真是无语了。

  • 3楼
    2016-04-11 15:42
    mingricha

    航哥,请问这个压到出来,如果目标文件夹下有同名文件,会覆盖原文件吗?

    站长回复

    默认是覆盖的,如果不想覆盖的话可以把overwrite参数设为false。

  • 2楼
    2016-02-25 10:57
    ce

    1. 引入包/Users/app/iOSDemo/demo/demo-Bridging-Header.h:4:9: 'ZipArchive.h' file not found
    <unknown>:0: error: failed to import bridging header '/Users/app/iOSDemo/demo/demo-Bridging-Header.h

    站长回复

    应该是哪步操作有误,你再照着文章一步一步操作下。或者把项目下载下来比较下。

  • 1楼
    2016-01-20 10:47
    Anyz

    辛苦了! 请问数据的压缩改如何实现呢?
    如:对发送的JSON字符进行压缩

    站长回复

    数据压缩可以参考这里:https://github.com/Alamofire/Alamofire/issues/256(文章最后一个回复)
    下周我也会写篇相关文章。