本文介绍了你如何通过Jackson 2 JsonNode走树JSON?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
由于我找不到这个问题的任何答案,这是一种令人沮丧的运动。所以我将在这里回答这个问题。
This was a bit of an exercise in frustration made worse by the fact that I couldn't find any answers to this question. So I'm going to answer the question here.
我发现最难理解的是JsonNode没有任何 getName()
或类似的方法,我期待JSON是 name:value
数据类型。虽然我在解决了这个解决方案之后意识到数组不是名称:值。
What I find most difficult to understand was that JsonNode doesn't have any getName()
or similar method which I was expecting given that JSON is a name:value
data type. Though I realised after working out this solution that arrays aren't name:value.
请参阅下面的答案。
推荐答案
package treeWalker;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Map;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.Lists;
public class TreeWalker
{
public JsonNode convertJSONToNode(String json) throws JsonProcessingException, IOException
{
ObjectMapper mapper = new ObjectMapper();
JsonNode jsonNode = mapper.readTree(json);
return jsonNode;
}
public void walkTree(JsonNode root)
{
walker(null, root);
}
private void walker(String nodename, JsonNode node)
{
String nameToPrint = nodename != null ? nodename : "must_be_root";
System.out.println("walker - node name: " + nameToPrint);
if (node.isObject())
{
Iterator<Map.Entry<String, JsonNode>> iterator = node.fields();
ArrayList<Map.Entry<String, JsonNode>> nodesList = Lists.newArrayList(iterator);
System.out.println("Walk Tree - root:" + node + ", elements keys:" + nodesList);
for (Map.Entry<String, JsonNode> nodEntry : nodesList)
{
String name = nodEntry.getKey();
JsonNode newNode = nodEntry.getValue();
// System.out.println(" entry - key: " + name + ", value:" + node);
walker(name, newNode);
}
}
else if (node.isArray())
{
Iterator<JsonNode> arrayItemsIterator = node.elements();
ArrayList<JsonNode> arrayItemsList = Lists.newArrayList(arrayItemsIterator);
for (JsonNode arrayNode : arrayItemsList)
{
walker("array item", arrayNode);
}
}
else
{
if (node.isValueNode())
{
System.out.println(" valueNode: " + node.asText());
}
else
{
System.out.println(" node some other type");
}
}
}
}
运动的单元测试(没有断言!对不起)。
And a Unit test to exercise (with no asserts! Sorry).
package treeWalker;
import java.io.IOException;
import org.junit.Test;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
public class TreeWalkerTest
{
TreeWalker treeWalker = new TreeWalker();
private String getJSON()
{
String json = "{\"a\":\"val_a\",\"b\":\"val_b\",\"c\":[1,2,3]}";
return json;
}
@Test
public void testConvertJSONToNode() throws JsonProcessingException, IOException
{
String json = getJSON();
JsonNode jNode = treeWalker.convertJSONToNode(json);
System.out.println("jnode:" + jNode);
}
@Test
public void testWalkTree() throws JsonProcessingException, IOException
{
JsonNode jNode = treeWalker.convertJSONToNode(getJSON());
treeWalker.walkTree(jNode);
}
}
哦,以及构建.gradle
:
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.5'
compile 'com.fasterxml.jackson.core:jackson-core:2.4.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.3'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.4.3'
compile 'com.google.guava:guava:18.0'
testCompile "junit:junit:4.11"
}
这篇关于你如何通过Jackson 2 JsonNode走树JSON?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!