使用Objective-C解压缩ZIP文件教程
使用Objective-C解压缩ZIP文件教程是本文要介绍的内容,主要来学习的是在Objective-C如何来解压缩ZIP文件,来看本文详细内容。
1、首先引入libz.dylib框架
2、到http://code.google.com/p/ziparchive/downloads/list下载所需要的第三方文件,并将其导入到项目中。
3、解压缩ZIP文件代码如下:
ZipArchive* zip = [[ZipArchive alloc] init]; NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *dcoumentpath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil; NSString* l_zipfile = [dcoumentpath stringByAppendingString:@"/test.zip"] ; NSString* image1 = [dcoumentpath stringByAppendingString:@"/2.png"] ; NSString* image2 = [dcoumentpath stringByAppendingString:@"/3.png"] ; BOOL ret = [zip CreateZipFile2:l_zipfile]; ret = [zip addFileToZip:image1 newname:@"2.png"]; ret = [zip addFileToZip:image2 newname:@"3.png"]; if( ![zip CloseZipFile2] ) { l_zipfile = @""; } [zip release];
4、解压缩ZIP文件代码如下:
相关推荐
84407518 2012-07-16
87214552 2015-10-27
84407518 2016-01-25
89283517 2012-06-19
ObjectiveC 2012-06-14
fort0 2020-05-16
81570790 2020-04-16
86540698 2020-04-08
zhoutaifeng 2020-03-07
好好学习天天 2020-03-06
InterestSoul 2020-02-17
82467413 2019-12-31
81570790 2013-07-01
83254851 2013-08-29
84334052 2019-11-19
86540698 2019-11-19
84467715 2011-07-25
81731290 2014-03-22
85437811 2014-03-22