您好,登錄后才能下訂單哦!
UnicodeDecodeError: 'gbk' codec can't decode byte 0xb1 in position 94: illegal multibyte sequence
有時候用open()方法打開文件讀取文件的時候會出現這個問題:‘GBK’編×××無法解碼94號位置的字節0xb1:非法多字節序列。錯誤信息提示了使用“GBK”解碼。
1.分析
pycharm自動使用的是‘UTF-8’編碼,好像沒有什么問題,為什么會出現這個錯誤呢。結果查了下open()函數的注解,里面又這么一段話:
encoding is the name of the encoding used to decode or encode the file. This should only be used in text mode. *The default encoding is platform dependent*, but any encoding supported by Python can be passed. See the codecs module for the list of supported encodings.
The default encoding is platform dependent:默認編碼方式取決于平臺。這也就不奇怪會用‘GBK’編碼了,平臺不一樣,編碼方式不一樣,所以讀取的時候回出現錯誤。
2.解決方法
# 1.以byte讀取,并以‘utf-8’解碼
# fp = open(filename, 'rb')
# content = fp.read()
# self.content = content.decode('utf-8')
# fp.close()
# 2.在打開文件時指定編碼方式
fp = open(filename, encoding='utf-8')
content = fp.read()
self.content = content
fp.close()
如有不同見解,歡迎分享。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。