IOS解压缩和压缩文件

以前提到过 Android解压缩zip的实现方式,现在讲解一下IOS中解压的方法。

压缩文件:

ZipArchive *zip = [[ZipArchive alloc] init];

NSString *sZipPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.zip"];

NSString *img1Path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/img1.jpg"] ;

NSString* img2Path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/img2.jpg"] ;

BOOL bRet = [zip CreateZipFile2:sZipPath];

bRet = [zip addFileToZip:img1Path newname:@"img1.jpg"];

bRet = [zip addFileToZip:img2Path newname:@"img2.jpg"];

[zip CloseZipFile2];

[zip release];


解压缩:

ZipArchive *zip = [[ZipArchive alloc] init];

NSString *sZipPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.zip"];

NSString *unZipTo = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test"];

if ([zip UnzipOpenFile:sZipPath])

{

[zip UnzipFileTo:unZipTo overWrite:YES];

[zip UnzipCloseFile];

}

[zip release];


ZipArchive资源下载地址:

http://code.google.com/p/ziparchive/downloads/detail?name=ZipArchive.zip

猜你喜欢

转载自lizaochengwen.iteye.com/blog/1848609