Cocoa中Zip归档读写框架
Cocoa中Zip归档读写框架是本文要介绍的内容,主要介绍一个zip读写框架:zip-framework。这个框架支持直接在程序中读写zip归档中的文件,而无需使用NSTask去执行命令行的unzip。
Cocoa并没有提供读写zip的功能(有GZIP: /usr/include/zlib.h,但是很有局限性),这个zip框架很好地实现了这一功能。这个框架使用Objective-C写成,因此可以非常方便地在程序中调用。理论上来讲也完全可以用于iPhone(如果谁有兴趣可以试一下)。
使用方法:
#import <stdio .h> #import <zip /ZipArchive.h> ZipArchive *zip = [[ZipArchive alloc] initWithFile:@"…"]; if (!zip) { NSLog(@"File could not be opened"); } FILE *fp = [zip entryNamed:@"README.txt"]; // open stream to file README.txt in archive if (!fp) { NSLog(@"Not a file or not available in the archive"); } NSArray *allEntries = [zip entries]; // for example: [@"README", @"COPYING", @"src/", @"src/main.c"] [zip release]; // Autoreleased version ZipArchive *autoreleasedZip = [ZipArchive archiveWithFile:@"…"]; </zip></stdio>
这样就可以获取到zip包中的文件指针,可以直接对其进行读操作。(目前只支持fread操作)
相关推荐
codepython 2020-08-16
CloudXli 2020-08-16
wordmhg 2020-07-16
benico 2020-07-04
qianjq 2020-07-03
pythonxuexi 2020-06-22
fenxinzi 2020-06-16
Attend 2020-05-27
pengkunstone 2020-05-16
adsadadaddadasda 2020-05-04
Nicolase 2020-05-01
citic 2020-04-26
codeAB 2020-03-03
linuxisperfect 2020-03-03
Havshark 2020-01-21
SDUTACM 2020-01-10
PHP学习笔记 2020-01-06