人们,
如何压缩我的 iOS 应用程序的 sqlite 数据库?因为我正试图用云计算它,但我遇到了一些麻烦......
我应该使用哪些类来压缩它?请帮帮我!
人们,
如何压缩我的 iOS 应用程序的 sqlite 数据库?因为我正试图用云计算它,但我遇到了一些麻烦......
我应该使用哪些类来压缩它?请帮帮我!
您可以使用 ZipArchive,它是一个用于压缩/解压缩的目标 c 包装器 - http://code.google.com/p/ziparchive/
邮编:-
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* dPath = [paths objectAtIndex:0];
NSString* txtfile = [dPath stringByAppendingPathComponent:@"test.txt"];
NSString* zipfile = [dPath stringByAppendingPathComponent:@"test.zip"];
ZipArchive* zip = [[ZipArchive alloc] init];
BOOL ret = [zip CreateZipFile2:zipfile];
ret = [zip addFileToZip:txtfile newname:@"test.txt"];//zip
if( ![zip CloseZipFile2] )
{
zipfile = @"";
}
[zip release];
NSLog(@"The file has been zipped");
您可以使用 Zlib,它位于:http ://code.google.com/p/objective-zip/