W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
本章節(jié)我們將為大家介紹如何使用 Python 語(yǔ)言來(lái)編碼和解碼 JSON 對(duì)象。
在使用 Python 編碼或解碼 JSON 數(shù)據(jù)前,我們需要先安裝 JSON 模塊。本教程我們會(huì)下載 Demjson 并安裝:
$tar xvfz demjson-1.6.tar.gz
$cd demjson-1.6
$python setup.py install
使用 JSON 函數(shù)需要導(dǎo)入 json 庫(kù):import json。
函數(shù) | 描述 |
---|---|
json.dumps | 將 Python 對(duì)象編碼成 JSON 字符串 |
json.loads | 將已編碼的 JSON 字符串解碼為 Python 對(duì)象 |
json.dumps 用于將 Python 對(duì)象編碼成 JSON 字符串。
json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, encoding="utf-8", default=None, sort_keys=False, **kw)
以下實(shí)例將數(shù)組編碼為 JSON 格式數(shù)據(jù):
#!/usr/bin/python
import json
data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]
json = json.dumps(data)
print json
以上代碼執(zhí)行結(jié)果為:
[{"a": 1, "c": 3, "b": 2, "e": 5, "d": 4}]
使用參數(shù)讓 JSON 數(shù)據(jù)格式化輸出:
>>> import json
>>> print json.dumps({'a': 'W3Cschool', 'b': 7}, sort_keys=True, indent=4, separators=(',', ': '))
{
"a": "W3Cschool",
"b": 7
}
Python 原始類型向 json 類型的轉(zhuǎn)化對(duì)照表:
Python | JSON |
---|---|
dict | object |
list, tuple | array |
str, unicode | string |
int, long, float | number |
True | true |
False | false |
None | null |
json.loads 用于解碼 JSON 數(shù)據(jù)。該函數(shù)返回 Python 字段的數(shù)據(jù)類型。
json.loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])
以下實(shí)例展示了 Python 如何解碼 JSON 對(duì)象:
#!/usr/bin/python
import json
jsonData = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
text = json.loads(jsonData)
print text
以上代碼執(zhí)行結(jié)果為:
{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}
json 類型轉(zhuǎn)換到 Python 的類型對(duì)照表:
JSON | Python |
---|---|
object | dict |
array | list |
string | unicode |
number (int) | int, long |
number (real) | float |
true | True |
false | False |
null | None |
更多內(nèi)容參考:https://docs.python.org/2/library/json.html。
Demjson 是 python 的第三方模塊庫(kù),可用于編碼和解碼 JSON 數(shù)據(jù),包含了 JSONLint 的格式化及校驗(yàn)功能。
Github 地址:https://github.com/dmeranda/demjson
官方地址:http://deron.meranda.us/python/demjson/
在使用 Demjson 編碼或解碼 JSON 數(shù)據(jù)前,我們需要先安裝 Demjson 模塊。本教程我們會(huì)下載 Demjson 并安裝:
$ tar -xvzf demjson-2.2.3.tar.gz
$ cd demjson-2.2.3
$ python setup.py install
更多安裝介紹查看:http://deron.meranda.us/python/demjson/install
函數(shù) | 描述 |
---|---|
encode | 將 Python 對(duì)象編碼成 JSON 字符串 |
decode | 將已編碼的 JSON 字符串解碼為 Python 對(duì)象 |
Python encode() 函數(shù)用于將 Python 對(duì)象編碼成 JSON 字符串。
demjson.encode(self, obj, nest_level=0)
以下實(shí)例將數(shù)組編碼為 JSON 格式數(shù)據(jù):
#!/usr/bin/python
import demjson
data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]
json = demjson.encode(data)
print json
以上代碼執(zhí)行結(jié)果為:
[{"a":1,"b":2,"c":3,"d":4,"e":5}]
Python 可以使用 demjson.decode() 函數(shù)解碼 JSON 數(shù)據(jù)。該函數(shù)返回 Python 字段的數(shù)據(jù)類型。
demjson.decode(self, txt)
以下實(shí)例展示了 Python 如何解碼 JSON 對(duì)象:
#!/usr/bin/python
import demjson
json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
text = demjson.decode(json)
print text
以上代碼執(zhí)行結(jié)果為:
{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: