iOS 中的gzip解壓

來源:互聯網
上載者:User

最近做的一個東西中,需要從網路擷取xml檔案,但是該檔案用了gzip壓縮的。搜尋一 下有人說gzip壓縮的用urlrequest可以自己解壓,但是這必須從伺服器返回的header中有accept-Encoding說明是gzip 的。也就是用這句就可以實現自解壓:

[urlRequest addValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];

這個在我的項目中沒有作用,因為伺服器返回的header中沒有Accept-Encoding的說明。這就需要手動解壓了!解壓需要匯入libz.1.2.3.dylib庫,匯入#import "zlib.h"

下面是解壓的代碼:

 

-(NSData *)uncompressZippedData:(NSData *)compressedData  

{  

 

    if ([compressedData length] == 0) return compressedData;  

 

    unsigned full_length = [compressedData length];  

 

    unsigned half_length = [compressedData length] / 2;  

    NSMutableData *decompressed = [NSMutableData dataWithLength: full_length + half_length];  

    BOOL done = NO;  

    int status;  

    z_stream strm;  

    strm.next_in = (Bytef *)[compressedData bytes];  

    strm.avail_in = [compressedData length];  

    strm.total_out = 0;  

    strm.zalloc = Z_NULL;  

    strm.zfree = Z_NULL;  

    if (inflateInit2(&strm, (15+32)) != Z_OK) return nil;  

    while (!done) {  

        // Make sure we have enough room and reset the lengths.  

        if (strm.total_out >= [decompressed length]) {  

            [decompressed increaseLengthBy: half_length];  

        }  

        strm.next_out = [decompressed mutableBytes] + strm.total_out;  

        strm.avail_out = [decompressed length] - strm.total_out;  

        // Inflate another chunk.  

        status = inflate (&strm, Z_SYNC_FLUSH);  

        if (status == Z_STREAM_END) {  

            done = YES;  

        } else if (status != Z_OK) {  

            break;  

        }  

 

    }  

    if (inflateEnd (&strm) != Z_OK) return nil;  

    // Set real length.  

    if (done) {  

        [decompressed setLength: strm.total_out];  

        return [NSData dataWithData: decompressed];  

    } else {  

        return nil;  

    }  

}


以上是一個網上很容易搜尋到的解壓方法,正確,但是有個問題,就是,原文章中提到了zip,導致容易認為也可以解壓zip。但是 經過驗證這個方法是無法解壓zip格式的壓縮檔的。  解壓gzip檔案還是相當好用的。 

標記一下,gzip和zip檔案並不是一個副檔名那麼簡單,壓縮演算法上有很大差異。 只是很多壓縮軟體做了屏蔽,讓人感覺不到他們的差別了。  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.