首頁  >  文章  >  後端開發  >  解析 JSON 檔案時出錯,可能是 JSON 內容的隱藏值

解析 JSON 檔案時出錯,可能是 JSON 內容的隱藏值

WBOY
WBOY轉載
2024-02-06 08:39:111241瀏覽

解析 JSON 文件时出错,可能是 JSON 内容的隐藏值

問題內容

我有這個 JSON 檔案:

https://drive.google.com/file/d/1zh_fJJNWs9GaPnlLZ459twSubsYkzMi5/view?usp=share_link

##一開始看起來很正常,即使使用線上 json 模式驗證器 但是,當在本地解析它時,我收到錯誤。 我用 python、nodejs 和 golang 嘗試過,但它不起作用。 我認為它可能有一些隱藏的價值,使得無法解析它


正確答案


這是完整的解決方案。針對程式碼所新增的註解。

# read the file as bytes
import chardet
import json
file_path=r"2022_2973.json"
with open (file_path , "rb") as f:
    data= f.read() # read file as bytes
file_encoding=chardet.detect(data)['encoding'] # detect the encoding
print(f"file(bytes) encoding:{file_encoding}") # print encoding

json_data = json.loads(data.decode(file_encoding)) # decode the bytes and load the json data
json_data['snaps'][1]

輸出:

file(bytes) encoding:UTF-16
{'group': 'Slot',
 'group_order': 1,
 'positions': [{'group': 'Slot',
   'position': 'SLWR',

以上是解析 JSON 檔案時出錯,可能是 JSON 內容的隱藏值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:stackoverflow.com。如有侵權,請聯絡admin@php.cn刪除