Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

REST Assured Tutorial 35 – De-Serialization – JSON Object To Java Object Using Gson API

Posted on 02/19/2025 By admin

As a part of End to End REST Assured Tutorial, in this post, We will learn the “De-Serialization” concept where we will create Java Object from JSON Objects using the Gson library.

Previously we learned Serialization – Java Object To JSON Object Using Gson API.

We have learned about POJOs in the previous posts. If you have not refereed those posts then I will advise you to go through about POJO concepts here:-

What Is Plain Old Java Object (POJO)?

How To Create POJO Classes Of A JSON Object Payload?

How To Create POJO Classes Of A JSON Array Payload?

How To Create POJO Classes Of A Nested JSON Payload?

When we request an API it may return a response body which is mostly JSON or XML. We can use Jsonpath or Xmlpath to traverse through nodes to fetch specific values but it is not advisable if the response is bigger or heavily nested. We can parse that JSON or XML response into POJO classes. After parsing into POJO classes, we can easily get values from response easily. This is called De-serialization. For this, we can use any JSON parser APIs. In this post, we will use Gson API which is more famous. I have already discussed Serialization and de-serialization using Jackson API.

As per Gson official document, Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Gson can work with arbitrary Java objects including pre-existing objects that you do not have source-code of.

  • Provide simple toJson() and fromJson() methods to convert Java objects to JSON and vice-versa
  • Allow pre-existing unmodifiable objects to be converted to and from JSON
  • Extensive support of Java Generics
  • Allow custom representations for objects
  • Support arbitrarily complex objects (with deep inheritance hierarchies and extensive use of generic types)

Gson library provides a class called “Gson“. This is the main class for using Gson. Gson is typically used by first constructing a Gson instance and then invoking toJson(Object) or fromJson(String, Class) methods on it. Gson instances are Thread-safe so you can reuse them freely across multiple threads.

You can create a Gson instance by invoking new Gson(), if the default configuration is all you need. You can also use GsonBuilder to build a Gson instance with various configuration options such as versioning support, pretty-printing, custom JsonSerializer, JsonDeserializer, and InstanceCreator.

let’s learn about de-serialization using Gson in this post.

Let’s first add the latest Gson dependency in your maven project. I have used below dependency for this post which is the latest version:-

  com.google.code.gson gson 2.8.6

{
  "firstName" : "Amod",
  "lastName" : "Mahajan",
  "gender" : "M",
  "age" : 29,
  "salary" : 10987.77,
  "married" : false
}

We need to parse above JSON string to Java Object. To create a Java object we need a class i.e. one or multiple POJO classes based on the requirement. Let’s create a class with field name exactly (case sensitive) the same as node names in above JSON string because with default setting while parsing JSON object o Java object, it will look on getter setter methods of field names. In fact, access specifiers do not matter here. We will cover some interesting facts on it later.

package SerializationDeserialization;

public class Employee {

        private String firstName;
        private String lastName;
        private String gender;

        private int age;
        private double salary;
        private boolean married;

        public String getFirstName() {
                return firstName;
        }

        public void setFirstName(String firstName) {
                this.firstName = firstName;
        }

        public String getLastName() {
                return lastName;
        }

        public void setLastName(String lastName) {
                this.lastName = lastName;
        }

        public String getGender() {
                return gender;
        }

        public void setGender(String gender) {
                this.gender = gender;
        }

        public int getAge() {
                return age;
        }

        public void setAge(int age) {
                this.age = age;
        }

        public double getSalary() {
                return salary;
        }

        public void setSalary(double salary) {
                this.salary = salary;
        }

        public boolean getMarried() {
                return married;
        }

        public void setMarried(boolean married) {
                this.married = married;
        }

}

Gson class provides multiple overloaded fromJson() methods to achieve this. below is a list of available methods:-

We will learn how to de-serialize a JSON string and a .json file to Java object. I have stored a .json file in my project as below:-

package SerializationDeserialization;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.google.gson.Gson;

public class DeserializeJsonToJavaObjectUsingGson {

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

                // De-serializing from JSON String
                String jsonString = "{\r\n" + "  \"firstName\" : \"Amod\",\r\n" + "  \"lastName\" : \"Mahajan\",\r\n"
                                + "  \"gender\" : \"M\",\r\n" + "  \"age\" : 29,\r\n" + "  \"salary\" : 10987.77,\r\n"
                                + "  \"married\" : false\r\n" + "}";

                Gson gson = new Gson();
                // Pass JSON string and the POJO class
                Employee employeeObject = gson.fromJson(jsonString, Employee.class);
                // Now use getter method to retrieve values
                String firsName = employeeObject.getFirstName();
                String lastName = employeeObject.getLastName();
                String gender = employeeObject.getGender();
                int age = employeeObject.getAge();
                double salary = employeeObject.getSalary();
                boolean married = employeeObject.getMarried();

                System.out.println("Details of Employee is as below:-");
                System.out.println("First Name : " + firsName);
                System.out.println("Last Name : " + lastName);
                System.out.println("Gender : " + gender);
                System.out.println("Age : " + age);
                System.out.println("Salary : " + salary);
                System.out.println("Married : " + married);

                // De-serializing from a json file
                String userDir = System.getProperty("user.dir");
                File inputJsonFile = new File(userDir + "\\src\\test\\resources\\EmployeePayloadUsingGson.json");
                FileReader fileReader = new FileReader(inputJsonFile);
                Employee employeeObject1 = gson.fromJson(fileReader, Employee.class);

                // Now use getter method to retrieve values
                String firsName1 = employeeObject1.getFirstName();
                String lastName1 = employeeObject1.getLastName();
                String gender1 = employeeObject1.getGender();
                int age1 = employeeObject1.getAge();
                double salary1 = employeeObject1.getSalary();
                boolean married1 = employeeObject1.getMarried();

                System.out.println("Details of Employee from json file is as below:-");
                System.out.println("First Name : " + firsName1);
                System.out.println("Last Name : " + lastName1);
                System.out.println("Gender : " + gender1);
                System.out.println("Age : " + age1);
                System.out.println("Salary : " + salary1);
                System.out.println("Married : " + married1);
        }
}
Details of Employee is as below:-
First Name : Amod
Last Name : Mahajan
Gender : M
Age : 29
Salary : 10987.77
Married : false
Details of Employee from json file is as below:-
First Name : Amod
Last Name : Mahajan
Gender : M
Age : 29
Salary : 10987.77
Married : false

You can download/clone the above sample project from here.

If you have any doubt, feel free to comment below.If you like my posts, please like, comment, share and subscribe.#ThanksForReading

#HappyLearning

Uncategorized

Post navigation

Previous Post: Postman Tutorial Part 2 – Installation of Postman Tool – Chrome App, Native App and Web app
Next Post: FindAll Annotation In Page Factory In Selenium WebDriver

Related Posts

Missing Firebug? ‘Rūto’ is On The Way ==> Uncategorized
April 8, 2019 – Make Selenium Easy Uncategorized
oauth2.o flow Uncategorized
Frequently Asked Java Program 28: Java Program to Remove Duplicate Characters From Word Using Collection Concept Uncategorized
inherSortig – Make Selenium Easy Uncategorized
Protractor Tutorial 7 – NPM – Installing a Package Locally & Globally Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark