Compress/Decompress NSString in objective-c (iphone) using GZIP or deflate

前端 未结 4 1597
遇见更好的自我
遇见更好的自我 2020-12-01 22:11

I have a web-service running on Windows Azure which returns JSON that I consume in my iPhone app.

Unfortunately, Windows Azure doesn\'t seem to support the compressi

相关标签:
4条回答
  • 2020-12-01 22:28

    After all this time, I finally found a solution to this problem!

    None of the answers above helped me, as promising as they all looked. In the end, I was able to compress the string on the server with gzip using the chilkat framework for .net ... and then decompress it on the iphone using the chilkat framework for iOS (not yet released, but available if you email the guy directly).

    The chilkat framework made this super easy to do so big thumbs up to the developer!

    0 讨论(0)
  • 2020-12-01 22:39

    I needed to compress data on the iPhone using Objective-c and decompress on PHP. Here is what I used in XCode 11.5 and iOS 12.4:

    iOS Objective-c Compression Decompression Test Include libcompression.tbd in the Build Phases -> Link Binary With Library. Then include the header.

    #include "compression.h"
    
    
    NSLog(@"START META DATA COMPRESSION");
    NSString *testString = @"THIS IS A COMPRESSION TESTTHIS IS A COMPRESSION TESTTHIS IS A COMPRESSION TESTTHIS IS A COMPRESSION TESTTHIS IS A COMPRESSION TESTTHIS IS A COMPRESSION TEST";
    NSData *theData = [testString dataUsingEncoding:NSUTF8StringEncoding];
    size_t src_size = theData.length;
    uint8_t *src_buffer = (uint8_t*)[theData bytes];
    size_t dst_size = src_size+4096;
    uint8_t *dst_buffer = (uint8_t*)malloc(dst_size);
    dst_size = compression_encode_buffer(dst_buffer, dst_size, src_buffer, src_size, NULL, COMPRESSION_ZLIB);
    NSLog(@"originalsize:%zu compressed:%zu", src_size, dst_size);
    NSData *dataData = [NSData dataWithBytes:dst_buffer length:sizeof(dst_buffer)];
    NSString *compressedDataBase64String = [dataData base64EncodedStringWithOptions:0];    
    
    NSLog(@"Compressed Data %@", compressedDataBase64String);
    
    NSLog(@"START META DATA DECOMPRESSION");
    src_size = compression_decode_buffer(src_buffer, src_size, dst_buffer, dst_size, NULL, COMPRESSION_ZLIB);
    NSData *decompressed = [[NSData alloc] initWithBytes:src_buffer length:src_size];
    NSString *decTestString;
    decTestString = [[NSString alloc] initWithData:decompressed encoding:NSASCIIStringEncoding];
    
    NSLog(@"DECOMPRESSED DATA %@", decTestString);
    
    free(dst_buffer);
    

    On the PHP side I used the following function to decompress the data:

    function decompressString($compressed_string) {
    
        //NEED RAW GZINFLATE FOR COMPATIBILITY WITH IOS COMPRESSION_ZLIB WITH IETF RFC 1951
        $full_string = gzinflate($compressed_string);
        return $full_string;
    
    }  
    
    0 讨论(0)
  • 2020-12-01 22:47

    Your "compressed" string is not raw GZIP'd data, it's in some encoding that allows those bytes to be stored in a string-- looks like base-64 or something like it. To get an NSData out of this, you'll need to decode it into the NSData.

    If it's really base-64, check out this blog post an accompanying code: http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html which will do what you want.

    Once you have an NSData object, the ASIHTTPRequest method will probably do as you like.

    0 讨论(0)
  • 2020-12-01 22:49

    This worked for me: from a string gzipeed, then base64 encoded to un-gzipped string (all utf8).

    #import "base64.h"
    #import "NSData+Compression.h"
    
    ...
    
    +(NSString *)gunzipBase64StrToStr:(NSString *)stringValue {
        //now we decode from Base64
        Byte inputData[[stringValue lengthOfBytesUsingEncoding:NSUTF8StringEncoding]];//prepare a Byte[]
        [[stringValue dataUsingEncoding:NSUTF8StringEncoding] getBytes:inputData];//get the pointer of the data
        size_t inputDataSize = (size_t)[stringValue length];
        size_t outputDataSize = EstimateBas64DecodedDataSize(inputDataSize);//calculate the decoded data size
        Byte outputData[outputDataSize];//prepare a Byte[] for the decoded data
        Base64DecodeData(inputData, inputDataSize, outputData, &outputDataSize);//decode the data
        NSData *theData = [[NSData alloc] initWithBytes:outputData length:outputDataSize];//create a NSData object from the decoded data
                                                                                          //NSLog(@"DATA: %@ \n",[theData description]);
    
        //And now we gunzip:
        theData=[theData gzipInflate];//make bigger==gunzip
        return [[NSString alloc] initWithData:theData encoding:NSUTF8StringEncoding];
    }
    
    @end
    
    0 讨论(0)
提交回复
热议问题