'utf8'编解码器无法解码字节0xf3

时间:2015-06-23 07:20:45

标签: python json character-encoding

我使用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

1 个答案:

答案 0 :(得分:8)

您的文件未以UTF-8编码,错误发生在fp.read()行。你必须使用:

import io
io.open(filename, encoding='latin-1')

加入路径的正确而非平台依赖用法是:

os.path.join(root, f)