JSON是一種輕量級的數據交換格式,各種語言都有良好的支持。字典是Python的一種數據結構。可以看成關聯數組。
有些時候我們需要設計到字典轉換成JSON序列化到文件,或者從文件中讀取JSON。簡單備忘一下。
Dict轉JSON寫入文件
代碼如下:
#!/usr/bin/env python
# coding=utf-8
import json
d = {'first': 'One', 'second':2}
json.dump(d, open('/tmp/result.txt', 'w'))
寫入結果
代碼如下:
cat /tmp/result.txt
{"second": 2, "first": "One"}
讀取JSON
代碼如下:
#!/usr/bin/env python
# coding=utf-8
import json
d = json.load(open('/tmp/result.txt','r'))
print d, type(d)
運行結果
代碼如下:
{u'second': 2, u'first': u'One'} <type 'dict'>
其他
PS:關于json操作,這里再為大家推薦幾款比較實用的json在線工具供大家參考使用:
在線JSON代碼檢驗、檢驗、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在線格式化工具:
http://tools.jb51.net/code/jsonformat
在線XML/JSON互相轉換工具:
http://tools.jb51.net/code/xmljson
json代碼在線格式化/美化/壓縮/編輯/轉換工具:
http://tools.jb51.net/code/jsoncodeformat
在線json壓縮/轉義工具:
http://tools.jb51.net/code/json_yasuo_trans
C語言風格/HTML/CSS/json代碼格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
新聞熱點
疑難解答