7

我有一个 json 字符串,我需要验证它并在 json 字符串中找到除列表之外的任何其他键。示例 json 字符串是

{
    "required" : true,
    "requiredMsg" : "Title needed",
    "choices" : [ "a", "b", "c", "d" ],
    "choiceSettings" : {
        "a" : {
            "exc" : true
        },
        "b" : { },
        "c" : { },
        "d" : {
            "textbox" : {
                "required" : true
            }
        }
    },
    "Settings" : {
        "type" : "none"
    }
}

为了只允许 json 字符串中存在预定义的键,我想获取 json 字符串中的所有键。如何获取 json 字符串中的所有键。我正在使用 jsonNode。到目前为止我的代码是

        JsonNode rootNode = mapper.readTree(option);
        JsonNode reqiredMessage = rootNode.path("reqiredMessage");             
        System.out.println("msg   : "+  reqiredMessage.asText());            
        JsonNode drNode = rootNode.path("choices");
        Iterator<JsonNode> itr = drNode.iterator();
        System.out.println("\nchoices:");
        while (itr.hasNext()) {
            JsonNode temp = itr.next();
            System.out.println(temp.asText());
        }    

如何使用从 json 字符串中获取所有键JsonNode

4

4 回答 4

14

forEach将遍历 a 的子级(在打印时JsonNode转换为)并获得一个over 键。以下是打印示例 JSON 元素的一些示例:StringfieldNames()Iterator<String>

JsonNode rootNode = mapper.readTree(option);

System.out.println("\nchoices:");
rootNode.path("choices").forEach(System.out::println);

System.out.println("\nAllKeys:");
rootNode.fieldNames().forEachRemaining(System.out::println);

System.out.println("\nChoiceSettings:");
rootNode.path("choiceSettings").fieldNames().forEachRemaining(System.out::println);

您可能fields()在某些时候需要返回一个,Iterator<Entry<String, JsonNode>>以便您可以迭代键、值对。

于 2018-02-14T11:10:42.860 回答
7

这应该这样做。

Map<String, Object> treeMap = mapper.readValue(json, Map.class);

List<String> keys  = Lists.newArrayList();
List<String> result = findKeys(treeMap, keys);
System.out.println(result);

private List<String> findKeys(Map<String, Object> treeMap , List<String> keys) {
    treeMap.forEach((key, value) -> {
      if (value instanceof LinkedHashMap) {
        Map<String, Object> map = (LinkedHashMap) value;
        findKeys(map, keys);
      }
      keys.add(key);
    });

    return keys;
  }

这将打印出结果为

[required, requiredMsg, choices, exc, a, b, c, required, textbox, d, choiceSettings, type, Settings]
于 2018-02-14T12:17:34.550 回答
3

接受的答案效果很好,但会发出警告,“类型安全:类型的表达式Map需要未经检查的转换才能符合Map <String, Object>

这个答案导致我将该行更改为以下内容以消除警告:

Map<String, Object> treeMap = mapper.readValue(json, new TypeReference<Map<String, Object>>() {}); 
于 2020-02-28T23:42:38.263 回答
0

接受的解决方案不支持 json 中的列表。这是我的建议:

public List<String> getAllNodeKeys(String json) throws JsonProcessingException {
    Map<String, Object> treeMap = objectMapper.readValue(json, new TypeReference<>() {
    });
    return findKeys(treeMap, new ArrayList<>());
}

private List<String> findKeys(Map<String, Object> treeMap, List<String> keys) {
    treeMap.forEach((key, value) -> {
        if (value instanceof LinkedHashMap) {
            LinkedHashMap map = (LinkedHashMap) value;
            findKeys(map, keys);
        } else if (value instanceof List) {
            ArrayList list = (ArrayList) value;
            list.forEach(map -> findKeys((LinkedHashMap) map, keys));

        }
        keys.add(key);
    });

    return keys;
}
于 2021-02-02T15:18:54.737 回答