1

人々、

iOSアプリのsqliteデータベースをZipするにはどうすればよいですか?クラウドでsincしようとしているのですが、問題が発生しています...

zipするために使用するクラスはどれですか?私を助けてください!

4

2 に答える 2

4

ZipArchiveを使用して、zip/unzipするObjectiveCラッパーを使用できます-http: //code.google.com/p/ziparchive/

zipの場合:-

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");
于 2012-05-23T13:34:10.953 に答える
0

http://code.google.com/p/objective-zip/で入手できるZlibを使用できます。

于 2012-05-23T13:33:24.923 に答える