我正在查询并返回一个json字符串,为了这个例子,我将发布一个例子。我正在试图弄清楚如何挖掘值数组并查找哪些标记为默认值。
示例JSON
{
"id": "333706819617",
"guid": "4aCdriCG0WvfYEUkFf8_xqQEFxgwgNU8",
"title": "Test entry",
"author": "",
"description": "Desc",
"added": 1411702963000,
"content": [
{
"audioChannels": 2,
"audioSampleRate": 44100,
"bitrate": 281656,
"checksums": {
"md5": "70DF3E21131F9F02C3F0A74F3664AB73"
},
"contentType": "audio",
"duration": 43.258,
"expression": "full",
"fileSize": 1522986,
"frameRate": 0.0,
"format": "AAC",
"height": 288,
"isDefault": false,
"language": "en",
"sourceTime": 0.0,
"url": "http://example.com/dZiASoxchRyS",
"width": 352
},
{
"audioChannels": 2,
"audioSampleRate": 44100,
"bitrate": 160000,
"checksums": {
"md5": "3AC622D31B9DED37792CC7FF2F086BE6"
},
"contentType": "audio",
"duration": 43.206,
"expression": "full",
"fileSize": 866504,
"frameRate": 0.0,
"format": "MP3",
"height": 0,
"isDefault": false,
"language": "",
"sourceTime": 0.0,
"url": "http://example.com/59M_PSFgGGXE",
"width": 0
}
],
"thumbnails": [
{
"audioChannels": 0,
"audioSampleRate": 0,
"bitrate": 0,
"checksums": {
"md5": "BE8C98A07B3FE9020BFA464C42112999"
},
"contentType": "image",
"duration": 0.0,
"expression": "full",
"fileSize": 20379,
"frameRate": 0.0,
"format": "JPEG",
"height": 256,
"isDefault": true,
"language": "",
"sourceTime": 0.0,
"url": "http://img.example.com/waveform.jpg",
"width": 256
}
]
}
我接受JSON字符串并将其转换回JSONObject
JSONObject mediaObject = new Gson().fromJson(mediaString, JSONObject.class);
String content = mediaObject.optString("content");
当我输出content
时,它会返回以下内容。
{values=[{nameValuePairs={audioChannels=2.0, audioSampleRate=44100.0, bitrate=281656.0, checksums={nameValuePairs={md5=70DF3E21131F9F02C3F0A74F3664AB73}}......
如何正确浏览内容的值并找到isDefault
的值?在示例JSON中,没有isDefault = true
的内容,因此它将默认为第一个对象。
似乎我只能将值定位为字符串,是否必须将content
转换为JSONArray
?
编辑:我似乎无法将mediaObject.content
转换为JSONArray。 mediaObject.optJSONArray("content")
返回null。我也尝试将它作为一个字符串,然后转换为JSONArray而不占优势。
编辑2:发现数据的问题是什么,当我用gson解析json时,它正在弄乱最终输出的数据。
所以我从new Gson().toJson(jsonObject);
更改为jsonObject.toString())
,我现在可以使用optJSONArray
定位数组。为了将数据恢复到JSONObject,我使用了JSONObject mediaObject = new JSONObject(mediaString);
GSON正在改变数据
答案 0 :(得分:3)
不是从JSONObject中提取内容的字符串值,而是可以获得JSONArray
JSONArray content = mediaObject.getJSONArray("content");
现在,您可以使用非常传统的for循环遍历数组中的对象
for(int i = 0; i < content.length(); i++) {
JSONObject mediaItem = content.getJSONObject(i);
boolean itemIsDefault = mediaItem.getBoolean("isDefault");
}
的所有链接
答案 1 :(得分:2)
你能不能
JSONObject mJson = new JSONObject(inputString);
你为什么要用Gson?