在python中使用json的時候,主要也就是使用json模組,json是以一種良好的格式來進行資料的互動,從而在很多時候,可以使用json資料格式作為程式之間的介面。
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import json
print json.load(open('kel.txt'))
#deserialize string or unicode to python object
j = json.loads(open('kel.txt').read(),encoding='utf-8')
print type(j),j
for i in j:
print i
k = json.dumps(j,encoding='utf-8').decode('utf-8')
print k
kel.txt檔案內容如下:
執行結果如下:
中文
fist
在其中主要使用的方法為json.loads和json.dumps
注意在loads中引數必須為string,從而在開啟檔案的時候,要使用read方法,否則會出錯。
loads方法主要是用來載入json資料變成python中的物件,而dumps方法主要是將python物件修改為json格式。
開始遇到乙個錯誤如下:
[root@python 程式設計客棧56]# python kel.py
traceback (most recent call last):
file "kel.py", line 5, in 程式設計客棧dule>
json.load(open('kel.txt'))
file "/usr/local/python/lib/python2.7/json/__init__.py", line 291, in load
**kw)
file "/usr/local/python/lib/python2.7/json/__init__.py", line 339, in loads
return _default_decoder.decwww.cppcns.comode(s)
file "/usr/local/python/lib/python2.7/json/decoder.py", line 364, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
file "/usr/local/python/lib/python2.7/json/decoder.py", line 382, in raw_decode
raise valueerror("no json object could be decoded")
valueerror: no json object could be decoded
主要原因是因為,,,在json的資料格式中必須是雙引號開頭的,錯誤的json檔案如下:
www.cppcns.com
kel.py內容如下:
#!/ python
#-*- coding:utf-8 -*-
import json
j = json.loads(open('kel.txt').read())
print type(j),j
雙引號。。。單引號,傻傻的分不清楚
有的時候,在進行loads方法的時候,就是因為產生了單引號的字串。。。在python中尤其如此,和其他的東西沒啥關係,主要就是引號的關係!!!
本文標題: 詳解python中的json的基本使用方法
本文位址:
Python解析JSON詳解
json 函式 使用 json 函式需要匯入 json 庫 import json。函式 描述 json.dumps 將 python 物件編碼成 json 字串 json.loads 將已編碼的 json 字串解碼為 python 物件 json.dumps 語法 json.dumps obj,s...
Python解析JSON詳解
使用 json 函式需要匯入 json 庫 import json。json.dumps 將 python 物件編碼成 json 字串 json.loads 將已編碼的 json 字串解碼為 python 物件 語法json.dumps obj,skipkeys false,ensure ascii...
python中的json解析
主要實現以下功能 解析 與構造json,即encoder and decoder 官方指導 中文教程 前者將obj轉化為json str,後者將str轉化為python物件,如果json字串是個object,轉化為dict,若是array則轉化為list json寫法 表示array的json字串 ...