首页  >  文章  >  Java  >  如何访问嵌套 JSON 结果中的动态 JSON 键?

如何访问嵌套 JSON 结果中的动态 JSON 键?

Patricia Arquette
Patricia Arquette原创
2024-11-06 15:01:02130浏览

How to Access Dynamic JSON Keys in Nested JSON Results?

如何访问嵌套 JSON 结果中的动态 JSON 键

问题:

您有一个带有动态的嵌套 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 键的内容,请按照以下步骤操作:

  1. 获取表示的 JSONObject使用 JSONObject.getJSONObject("question_mark") 获取“question_mark”对象。
  2. 使用 JSONObject.keys() 获取动态键的迭代器。
  3. 使用迭代器迭代键。 hasNext() 和 Iterator.next() 方法。
  4. 对于每个动态键,使用 JSONObject.getJSONObject(String key) 获取表示动态值的对应 JSONObject。
  5. 访问所需的值来自表示动态值的 JSONObject。

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn