Skip to content

Instantly share code, notes, and snippets.

@realfirst
Created September 30, 2014 13:22
Show Gist options
  • Save realfirst/e42fc55060194ac95903 to your computer and use it in GitHub Desktop.
Save realfirst/e42fc55060194ac95903 to your computer and use it in GitHub Desktop.
jackson nested json parse
JsonNode node = mapper.readValue("[{\"listed_count\":1720,\"status\":{\"retweet_count\":78}}]]", JsonNode.class);
System.out.println(node.findValues("retweet_count").get(0).asInt());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment