Python中用zlib.decompress出错:error: Error -3 while decompressing data: incorrect header check

时间:2021-08-28 19:59:39

【问题】

在Python中,对于某个url返回的gzip的数据,调用zlib.decompress进行解码,但是出错:

    respHtml = zlib.decompress(respHtml); 
error: Error -3 while decompressing data: incorrect header check

【解决过程】

1.网上找了一堆,都是Error -5方面的错误。没有找到我要的Error -3。

2.最后搜“incorrect header check”才找到我要的:

Python decompressing gzip chunk-by-chunk

参考其解释,把:

respHtml = zlib.decompress(respHtml);

变为:

respHtml = zlib.decompress(respHtml, 16+zlib.MAX_WBITS);

就可以了。

【总结】

根据那个页面的解释,python中的zip只是c版本的zlib打了个包,然后对应的文档说明不完善,而且本身c语言版本的zlib的文档也就不全面,导致N多人出了这个错误,都不知道如何下手解决此问题。其实是该在文档里面说明一下的。

此问题的原因是,gzip和zlib的头,不太一样,导致此处用zlib去解析返回的gzip的数据,才出错了。

具体详情参看:How can I decompress a gzip stream with zlib?