python文字列をjsonオブジェクトに変換して値をとる

813 ワード

string ="{
  "status": "error",
  "messages": ["Could not find resource or operation 'BZK1.MapServer' on the system."],
  "code": 404
}"
print'オブジェクト:'string
print'取値:'json.loads(string)['code']
出力結果:
オブジェクト:{u'status':u'error',u'code':404,u'messages':[u"Could not find resource or operation'BZK 1.MapServer'on the system.]}
値:404
オブジェクトを文字列に変換するには、次の手順に従います.
resultJson = {"state": 1}
print json.dumps(resultJson)
     Json   loads()   dumps()