一、問題描述
python2保存pickle文件M库继,python3讀取報錯:
a bytes-like object is required, not 'str'
二替久、解決方法
數(shù)據(jù)文件是在Python2下序列化的,所以使用Python3讀取時比勉,需要將‘str’轉化為'bytes'
class StrToBytes:
? ? def __init__(self, fileobj):
? ? ? ? self.fileobj = fileobj
? ? def read(self, size):
? ? ? ? return self.fileobj.read(size).encode()
? ? def readline(self, size=-1):
? ? ? ? return self.fileobj.readline(size).encode()
小的例子:
with open('final_project_dataset.pkl', 'r') as data_file:
? ? data_dict = pickle.load(StrToBytes(data_file))
含有中文字符的話劳较,在類函數(shù)里驹止,編碼時要制定編碼格式,某些字符GBK不支持會報錯观蜗,如指定為'UTF8'臊恋、'GB2312'
三、小建議
在保存的時候直接保存為wb墓捻,猜測讀取時直接用rb讀取就不會這么麻煩抖仅,沒有實際實驗,如有朋友有測試結果砖第,歡迎評論撤卢。