문제:
동적 속성이 포함된 중첩된 JSON 결과가 있습니다. "141", "8911" 등과 같은 키. "count" 또는 "more_description" 값과 같은 이러한 동적 키의 콘텐츠에 액세스해야 합니다.
JSON:
{ "status": "OK", "search_result": [ { "product": "abc", "id": "1132", "question_mark": { "141": { "count": "141", "more_description": "this is abc", "seq": "2" }, "8911": { "count": "8911", "more_desc": "this is cup", "seq": "1" } }, "name": "some name", "description": "This is some product" }, { "product": "XYZ", "id": "1129", "question_mark": { "379": { "count": "379", "more_desc": "this is xyz", "seq": "5" }, "845": { "count": "845", "more_desc": "this is table", "seq": "6" }, "12383": { "count": "12383", "more_desc": "Jumbo", "seq": "4" }, "257258": { "count": "257258", "more_desc": "large", "seq": "1" } }, "name": "some other name", "description": "this is some other product" } ] }
해결책:
동적 JSON 키의 콘텐츠에 액세스하려면 다음 단계를 따르세요.
Java 코드:
JSONObject questionMark = searchResult.getJSONObject("question_mark"); Iterator keys = questionMark.keys(); while(keys.hasNext()) { String currentDynamicKey = (String)keys.next(); JSONObject currentDynamicValue = questionMark.getJSONObject(currentDynamicKey); // Access and manipulate the content of the currentDynamicValue... }
위 내용은 중첩된 JSON 결과에서 동적 JSON 키에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!