python用模組zlib壓縮與解壓字串和檔案的方法_python

來源:互聯網
上載者:User

python中zlib模組是用來壓縮或者解壓縮資料,以便儲存和傳輸。它是其他壓縮公用程式的基礎。下面來一起看看python用模組zlib壓縮與解壓字串和檔案的方法。話不多說,直接來看範例程式碼。

例子1:壓縮與解壓字串

import zlibmessage = 'abcd1234'compressed = zlib.compress(message)decompressed = zlib.decompress(compressed)print 'original:', repr(message)print 'compressed:', repr(compressed)print 'decompressed:', repr(decompressed)

結果

original: 'abcd1234'compressed: 'x\x9cKLJN1426\x01\x00\x0b\xf8\x02U'decompressed: 'abcd1234'

例子2:壓縮與解壓檔案

import zlibdef compress(infile, dst, level=9): infile = open(infile, 'rb') dst = open(dst, 'wb') compress = zlib.compressobj(level) data = infile.read(1024) while data:  dst.write(compress.compress(data))  data = infile.read(1024) dst.write(compress.flush())def decompress(infile, dst): infile = open(infile, 'rb') dst = open(dst, 'wb') decompress = zlib.decompressobj() data = infile.read(1024) while data:  dst.write(decompress.decompress(data))  data = infile.read(1024) dst.write(decompress.flush())if __name__ == "__main__": compress('in.txt', 'out.txt') decompress('out.txt', 'out_decompress.txt')

結果

組建檔案

out_decompress.txt out.txt

問題——處理對象過大異常

>>> import zlib>>> a = '123'>>> b = zlib.compress(a)>>> b'x\x9c342\x06\x00\x01-\x00\x97'>>> a = 'a' * 1024 * 1024 * 1024 * 10>>> b = zlib.compress(a)Traceback (most recent call last): File "<stdin>", line 1, in <module>OverflowError: size does not fit in an int

總結

以上就是關於python模組zlib壓縮與解壓的全部內容,希望本文的內容對大家學習或者使用python能有一定的協助,如果有疑問大家可以留言交流,謝謝大家對雲棲社區的支援。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.