중첩된 JSON 결과에서 동적 JSON 키 구문 분석
질문:
액세스 방법 JSON 결과 내 동적 값인 키의 내용은 무엇입니까?
샘플 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 결과의 동적 키에 액세스하려면 JSONObject 클래스의key() 메서드를 사용하세요. 이 메소드는 객체의 키를 반복하는 데 사용할 수 있는 Iterator를 반환합니다. 키가 있으면 getJSONObject(key) 메서드를 사용하여 해당 값을 검색할 수 있습니다.
다음은 JSON 예제에서 동적 키를 구문 분석하는 방법의 예입니다.
JSONObject searchResult = ...; // Assuming searchResult is a JSONObject JSONObject questionMark = searchResult.getJSONObject("question_mark"); Iterator keys = questionMark.keys(); while (keys.hasNext()) { String currentDynamicKey = (String) keys.next(); JSONObject currentDynamicValue = questionMark.getJSONObject(currentDynamicKey); // Do something with the dynamic key and value... }
이 코드는 Question_mark 개체의 키를 반복하고 해당 값을 검색합니다. 그런 다음 이 값을 사용하여 필요한 데이터에 액세스할 수 있습니다.
위 내용은 중첩된 JSON 결과에서 동적 키에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!