欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte 问题

程序员文章站 2024-02-22 11:43:10
...

解决方案:

方案一:
使用notepad++打开文件,将文件转为utf-8的格式

方案二:
python2 中在.py文件中添加:


import sys
import codecs

defaultencoding = 'utf-8'

if sys.getdefaultencoding() != defaultencoding:
	reload(sys)
	sys.setdefaultencoding(defaultencoding)

在读文件的时候使用:
因为 python2 中没有 with open (file_name, ‘r’, encoding = ‘utf-8’)中的encoding

with codecs.open(file_name, 'r', 'utf-8') as f: