我有一个JSON响应如下
{
'data': {
'error': 0,
'results': {
'color': 'Mostly red gray.',
'labels': 'Diet Coke',
}
}
}
如何解析它以获得标签值?非常感谢你。
答案 0 :(得分:1)
使用org.json.JSONObject
您可以使用以下内容:
JSONObject obj = new JSONObject(json); // String 'json' contains your raw JSON
String labels = obj.getJSONObject("data").getJSONObject("results").getString("labels"); // "Diet Coke"
答案 1 :(得分:0)