天天看點

Python json檔案讀取及顯示中文亂碼的問題

city.json檔案的内容如下:

{
  "cities": [
    {
      "city": "北京",
      "cityid": "101010100"
    },
    {
      "city": "上海",
      "cityid": "101020100"
    }
    ]
}
           

可見,其中包含了中文。

Python使用json.loads之後列印中文會出現亂碼的問題,解決方法如下:

with open('city.json', 'r') as json_file:
    """
    讀取該json檔案時,先按照gbk的方式對其解碼再編碼為utf-8的格式
    """
    data = json_file.read().decode(encoding='gbk').encode(encoding='utf-8')
    print type(data)    # type(data) = 'str'
    result = json.loads(data)
    new_result = json.dumps(result,ensure_ascii=False) # 參考網上的方法,***ensure_ascii***設為False
    print new_result
# 輸出結果:
# "cities": [{"cityid": "101010100", "city": "北京"}, {"cityid": "101020100", "city": "上海"}]