1

我的目标是读取二进制文件并将其转换为文本。我的代码是:

def binary_to_text(self,file_name):
  open_file = open(file_name,"rb")
  with open("Binary2Text.txt", "a") as the_file:
    for line in open_file:
      the_file.write(binascii.b2a_uu(line))

我收到此错误:

binascii.Error: At most 45 bytes at once

有没有办法解决这个问题,或者除了 binascii 之外我还可以使用其他模块吗?谢谢!

4

1 回答 1

1

binascii.b2a_uu方法旨在成为执行 uuencode 的低级函数,其中算法将文本输入编码为 45 字节块,这就是输入有 45 字节块限制的原因。

除非您尝试自己实现 uuencode,否则您应该简单地使用该uu.encode方法:

import uu    
def binary_to_text(self, file_name):
    with open("Binary2Text.txt", "a") as the_file:
        the_file.write(uu.encode(file_name))
于 2019-03-05T00:42:02.480 回答