码迷,mamicode.com
首页 > 编程语言 > 详细

[Python]json对象转换出错expected string or buffer python

时间:2015-01-12 19:14:41      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:json   python   

【问题】

今天在使用python中的json转换碰到一个问题:

技术分享

【代码】

comments.json

{
	"count":"2",
	"page":"1",
	"comments":[
		{
			"content":"helloworld",
			"user":{
				"id":"0001",
				"name":"xiaosi"
			},
			"source":{
				"link":"http://mobile.youku.co",
				"name":"iPhone"
			}
		},
		{
			"content":"welcome to china",
			"user":{
				"id":"0002",
				"name":"sjf"
			},
			"source":{
				"link":"http://mobile.youku.co",
				"name":"android"
			}
		}
	]
}
Test.py
# coding=utf-8

import json
file = file("D:\\项目\python\comments.json")
data = json.loads(file)  


【分析解决】

经过调试,最终发现,python中默认使用单引号表示字符串"‘" 所以当,使用字符串符值以后,python会把双引号转换为单引号。

举例:

s = {
	"count":"2",
	"page":"1",
	"comments":[
		{
			"content":"helloworld",
			"user":{
				"id":"0001",
				"name":"xiaosi"
			},
			"source":{
				"link":"http://mobile.youku.co",
				"name":"iPhone"
			}
		},
		{
			"content":"welcome to china",
			"user":{
				"id":"0002",
				"name":"sjf"
			},
			"source":{
				"link":"http://mobile.youku.co",
				"name":"android"
			}
		}
	]
}

print s

技术分享


而json是不支持单引号的。可以用下面的方法转换

json_string=json.dumps(s)

str=json.loads(json_string)








[Python]json对象转换出错expected string or buffer python

标签:json   python   

原文地址:http://blog.csdn.net/sunnyyoona/article/details/42645299

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!