你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS7技巧 >> Swift 使用SSZipArchive實現文件的壓縮、解壓縮代碼

Swift 使用SSZipArchive實現文件的壓縮、解壓縮代碼

編輯:IOS7技巧
IOS中使用SSZipArchive壓縮和解壓縮 SSZipArchive是一個實現壓縮和解壓縮的第三方類庫,在眾多方案中,此方案最快捷,所以今天我們就來看一篇感動使用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 文件夾添加到項目中來


原文:Swift - 使用SSZipArchive實現文件的壓縮、解壓縮

(2)創建橋接頭文件 bridge.h 來包含需要引用的Objective-C頭文件,內容如下:

#import "ZipArchive.h"

(3)在項目target -> Build Phases -> Link Binary With Libraries中點擊加號,添加 libz.dylib 
 
原文:Swift - 使用SSZipArchive實現文件的壓縮、解壓縮

3,使用樣例

首先為了便於後面測試,我們先在項目中添加兩張圖片,以及兩個壓縮包文件(其中 test_password.zip 是帶密碼的壓縮包,密碼是:hangge.com)

原文:Swift - 使用SSZipArchive實現文件的壓縮、解壓縮

同時定義一個方法返回目標路徑(每次調用都會在程序的 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())

(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") //帶密碼

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved