JavaでJSON属性の値を変更する必要があります。値を適切に取得できますが、JSONを変更できませんでした。
ここに以下のコードがあります
JsonNode blablas = mapper.readTree(parser).get("blablas");
for (JsonNode jsonNode : blablas) {
String elementId = jsonNode.get("element").asText();
String value = jsonNode.get("value").asText();
if (StringUtils.equalsIgnoreCase(elementId, "blabla")) {
if(value != null && value.equals("YES")){
// I need to change the node to NO then save it into the JSON
}
}
}
これを行う最良の方法は何ですか?
resultMap = mapper.convertValue(aJsonNode, Map.class);
、Mapで変更してから、そのMapをJsonNodeに戻します。ただ言って。