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中文网其他相关文章!