我从服务器得到一个 JSON 响应,我需要获取的数组是嵌入在多个对象和数组中的一个值。我需要获取formatIds JSONArray。我的 JSON 看起来像这样:
{
"entries": [
{
"title": "sample",
"targets": [
{
"format": "wav",`enter code here`
"description": "A wav file",
"formatCriteria": [
{
"formatSelectionTitle": "Find WAV files",
"formatSteps": {
"UniqueId": "214212312321",
"formatMatches": {
"formatIds": [
"WAV",
"MP3"
]
}
}
}
]
}
]
}
]
}
我能够弄清楚的唯一方法是嵌入一堆 for 循环:
String[] assetUri;
for (int i = 0; i < entriesArray.length(); i++) {
entryJsonOjbect = entriesArray.getJSONObject(i);
fileTargetArray = tempObj.getJSONArray("targets");
//Loop through the targets array
for (int j = 0; j < fileTargetArray.length(); j++) {
tempObj = fileTargetArray.getJSONObject(j);
fileCriteriaArray = tempObj.getJSONArray("formatCriteria");
//Loop through fileCriteria Array
for (int h = 0; h < fileCriteriaArray.length(); h++) {
JSONObject fileCriteriaObj = fileCriteriaArray.getJSONObject(h);
//Get the JSON Object 'formatSteps'
JSONObject selectStepObj = fileCriteriaObj.getJSONObject("formatSteps");
//Get the JSON Object 'formatMatches'
JSONObject selectionMatches = selectStepObj.getJSONObject("formatMatches");
//FINALLY. Get the formatIds ARray
JSONArray assetTypeArray = selectionMatches.getJSONArray("formatIds");
//Assign the values from the JSONArray to my class
assetUri = new String[assetTypeArray.length()];
for (int z = 0; z < assetTypeArray.length(); z++) {
assetUri[z] = assetTypeArray.getString(z);
}
}
}
}
由于所有嵌入式循环,这段代码真的很慢 x20。有没有办法让我得到这个 JSONArray 而不必有这个额外的代码?在 jQuery 中有一个JSON.find并且想知道在 Java 中是否有类似的东西?我已经尝试过 JSON API 调用getJSONArray并获取根 jsonObject 但它不起作用,除非你在 json 数组存在的对象中。我确信我可以做某种类型的递归解决方案,但这仍然很烦人。有什么建议吗??