Languages
[Edit]
EN

Java - parse JSON to Node

6 points
Created by:
kris_coder
21020

In this short article, we would like to show how to parse JSON to the JsonNode object in Java.

Quick solution:

ObjectMapper objectMapper = new ObjectMapper();

String json = "{\"name\": \"john\"}";           // {"name": "john"}
JsonNode node = objectMapper.readTree(json);

System.out.println(node.get("name").asText());  // john

 

Practical example

As JsonNode we understand, the object returned from a parser is not related to a specific type. The JsonNode can store any JSON described as nodes tree.

Quick solution:

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

public class Program {

	public static void main(String[] args) throws JsonProcessingException {

		ObjectMapper objectMapper = new ObjectMapper();

		String json = "{\"name\": \"john\", \"email\": \"john@mail.com\"}";
		JsonNode node = objectMapper.readTree(json);

		JsonNode nameNode = node.get("name");
		JsonNode emailNode = node.get("email");

		System.out.println("name:  " + nameNode.asText());   // john
		System.out.println("email: " + emailNode.asText());  // john@mail.com
	}
}

Output:

name:  john
email: john@mail.com

Hint: to know how to attach *.jar lib to your project read this article.

Link to the library in the Maven repository:
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind

See also

  1. Java - parse JSON to object with Jackson lib

Alternative titles

  1. Java - convert JSON to Node
  2. Java - deserialize JSON to Node
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join