How to access Simple and Nested JSON Object in Java ?

Author: neptune | 30th-Mar-2023
#Java

As technology continues to advance, the use of JSON (JavaScript Object Notation) has become increasingly popular in the world of programming. JSON is a lightweight data interchange format that is easy to read and write for humans and machines alike. It is widely used in web applications to transmit data between the server and the client.

In Java, accessing JSON objects can be a bit tricky, especially when dealing with nested objects. However, with the right tools and knowledge, it can be a breeze. 


In this article, we will explore how to access both simple and nested JSON objects in Java with examples.


Before we dive into the code, let's first understand what JSON is and how it works. JSON is a text format that is used to represent data structures. It is based on a subset of the JavaScript programming language and is often used to transmit data between a server and a web application, as an alternative to XML. JSON is composed of two data structures: objects and arrays. Objects are collections of key-value pairs, while arrays are ordered lists of values.


Now that we have a basic understanding of JSON, let's move on to accessing simple JSON objects in Java. To do this, we will be using the JSON.simple library, which is a lightweight Java library for parsing and generating JSON data. The first step is to add the JSON.simple library to your project. You can do this by downloading the JAR file from the official website and adding it to your project's classpath.



Once you have added the library to your project, you can start accessing simple JSON objects. Let's say we have the following JSON object:


```

{

    "name": "John",

    "age": 30,

    "city": "New York"

}

```


To access this object in Java, we first need to parse the JSON string using the JSON.simple library. 


Here's an example:


```

import org.json.simple.JSONObject;

import org.json.simple.parser.JSONParser;

import org.json.simple.parser.ParseException;


public class SimpleJSONExample {

    public static void main(String[] args) {

        String jsonString = "{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}";


        JSONParser parser = new JSONParser();


        try {

            JSONObject jsonObject = (JSONObject) parser.parse(jsonString);


            String name = (String) jsonObject.get("name");

            long age = (long) jsonObject.get("age");

            String city = (String) jsonObject.get("city");


            System.out.println("Name: " + name);

            System.out.println("Age: " + age);

            System.out.println("City: " + city);

        } catch (ParseException e) {

            e.printStackTrace();

        }

    }

}

```


In this example, we first create a JSON string that represents our object. We then create a JSONParser object and use it to parse the JSON string. We cast the resulting object to a JSONObject and use the get() method to retrieve the values of the keys in the object. Finally, we print out the values to the console.


Now that we know how to access simple JSON objects, let's move on to nested JSON objects. Nested objects are objects that are contained within other objects. 


Here's an example of a nested JSON object:


```

{

    "name": "John",

    "age": 30,

    "address": {

        "street": "123 Main St",

        "city": "New York",

        "state": "NY",

        "zip": "10001"

    }

}

```

To access this object in Java, we need to first parse the JSON string as before. However, this time we need to access the nested object using the get() method twice. 


Here's an example:


```

import org.json.simple.JSONObject;

import org.json.simple.parser.JSONParser;

import org.json.simple.parser.ParseException;


public class NestedJSONExample {

    public static void main(String[] args) {

        String jsonString = "{\"name\":\"John\",\"age\":30,\"address\":{\"street\":\"123 Main St\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10001\"}}";


        JSONParser parser = new JSONParser();


        try {

            JSONObject jsonObject = (JSONObject) parser.parse(jsonString);


            String name = (String) jsonObject.get("name");

            long age = (long) jsonObject.get("age");


            JSONObject address = (JSONObject) jsonObject.get("address");

            String street = (String) address.get("street");

            String city = (String) address.get("city");

            String state = (String) address.get("state");

            String zip = (String) address.get("zip");


            System.out.println("Name: " + name);

            System.out.println("Age: " + age);

            System.out.println("Street: " + street);

            System.out.println("City: " + city);

            System.out.println("State: " + state);

            System.out.println("Zip: " + zip);

        } catch (ParseException e) {

            e.printStackTrace();

        }

    }

}

```


In this example, we first create a JSON string that represents our nested object. We then parse the JSON string as before. However, this time we access the nested object using the get() method twice. We first retrieve the address object using the get() method, and then retrieve the values of the keys in the address object using the get() method again. Finally, we print out the values to the console.


In conclusion, accessing JSON objects in Java can be a bit tricky, especially when dealing with nested objects. However, with the right tools and knowledge, it can be a breeze. By using the JSON.simple library and following the examples provided in this article, you should be able to access both simple and nested JSON objects in Java with ease.



Related Blogs
Where you applied OOPs in Automation Testing?
Author: neptune | 28th-Aug-2023
#Interview #Java
You may face this question Where you have applied OOPs concept in Automation Framework? in almost all the Selenium Interviews. Let's learn OOP’s concept in Java before going further...

How to use wait commands in Selenium WebDriver in Java ?
Author: neptune | 22nd-Feb-2022
#Selenium #Testing #Java
We are going to explore different types of waits in Selenium WebDriver. Implicit wait, Explicit wait, and Fluent wait with examples...

Best way to reverse a String for beginners in Java.
Author: neptune | 15th-Jun-2023
#Java
We will explore How to reverse a String in Java using simple way. If you are beginner in Java then you are at the right place...

25 Basic Java interview questions.
Author: neptune | 30th-May-2022
#Interview #Java
We will explore 25 basic Java interview questions...

Static Import Concept in Java
Author: neptune | 31st-Dec-2022
#Java
If you overuse the static import feature, it makes the program unreadable and unmaintainable...

View More