我使用python 2.7来读取json文件。我的代码是
import json
from json import JSONDecoder
import os
path=os.path.dirname(os.path.abspath(__file__))+'/json'
print path
for root, dirs, files in os.walk(os.path.dirname(path+'/json')):
for f in files:
if f.lower().endswith((".json")):
fp=open(root + '/'+f)
data = fp.read()
print data.decode('utf-8')
但是我收到了以下错误。
UnicodeDecodeError: 'utf8' codec can't decode byte 0xf3 in position 72: invalid
continuation byte
答案 0 :(得分:8)
您的文件未以UTF-8编码,错误发生在fp.read()
行。你必须使用:
import io
io.open(filename, encoding='latin-1')
加入路径的正确而非平台依赖用法是:
os.path.join(root, f)