Python GZIP 壓縮中的「TypeError: 'str' 不支援緩衝區介面」問題排查
使用Python 的gzip 模組壓縮字元字串時,開發人員可能會遇到錯誤「TypeError: 'str' 不支援緩衝區介面」。這個錯誤源自於從Python 2.x到Python 3.x的轉換,其中字串資料類型發生了變化。
要解決這個問題,需要在將字串寫入位元組之前將其編碼為位元組輸出檔案。以下程式碼片段修正了問題中提供的程式碼:
plaintext = input("Please enter the text you want to compress").encode('UTF-8') filename = input("Please enter the desired filename") with gzip.open(filename + ".gz", "wb") as outfile: outfile.write(plaintext)
透過將明文編碼為位元組,我們確保與 Python 3.x 中修訂後的字串資料類型的兼容性。另外,為了避免混淆,建議輸入和輸出檔案使用不同的變數名稱,因為「plaintext」和「filename」是Python中的保留字。
例如,以下程式碼示範如何使用 UTF-8 編碼有效壓縮波蘭文字:
text = 'Polish text: ąćęłńóśźżĄĆĘŁŃÓŚŹŻ' filename = 'foo.gz' with gzip.open(filename, 'wb') as outfile: outfile.write(bytes(text, 'UTF-8')) with gzip.open(filename, 'r') as infile: decompressed_text = infile.read().decode('UTF-8') print(decompressed_text)
以上是如何修復 Python GZIP 壓縮中的「類型錯誤:『str』不支援緩衝區介面」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!