Home  >  Article  >  Java  >  How to parse JSON to Gson tree model in Java?

How to parse JSON to Gson tree model in Java?

PHPz
PHPzforward
2023-08-27 17:25:05613browse

How to parse JSON to Gson tree model in Java?

The Gson library can be used to parse JSON strings into tree models . We can use JsonParser to parse a JSON string into a tree model of type JsonElement. The getAsJsonObject() method of JsonElement can be used to obtain JsonObject and getAsJsonArray( ) JsonElementMethod can be used to obtain elements of the form JsonArray.

Syntax

public JsonObject getAsJsonObject()
public JsonArray getAsJsonArray()

Example

import java.util.List;
import com.google.gson.*;
public class JsonTreeModelTest {
   public static void main(String args[]){
      String jsonStr = "{\"name\":\"Adithya\",\"age\":20,\"year of passout\":2005,\"subjects\": [\"MATHEMATICS\",\"PHYSICS\",\"CHEMISTRY\"]}";
      JsonParser jsonParser = new JsonParser();
      JsonElement jsonElement = jsonParser.parse(jsonStr);
      if(jsonElement.isJsonObject()) {
         JsonObject studentObj = jsonElement.getAsJsonObject();
         System.out.println("Student Info:");
         System.out.println("Name is: " + studentObj.get("name"));
         System.out.println("Age is: " + studentObj.get("age"));
         System.out.println("Year of Passout: " + studentObj.get("year of passout"));
         JsonArray jsonArray = studentObj.getAsJsonArray("subjects");
         System.out.println("Subjects:" + jsonArray);
      }
   }
}
// Student class<strong>
</strong>class Student {
   private String name;
   private int age;
   private int passoutYear;
   private List subjects;
   public Student(String name, int age, int passoutYear, List subjects) {
      this.name = name;
      this.age = age;
      this.passoutYear = passoutYear;
      this.subjects = subjects;
   }
   @Override
   public String toString() {
      return "Student{" +
             "name=&#39;" + name + &#39;\&#39;&#39; +
             ", age=&#39;" + age + &#39;\&#39;&#39; +
             ", year of passout=" + passoutYear +
             ", subjects=" + subjects +
             &#39;}&#39;;
   }
}

Output

Student Info:
Name is: "Adithya"
Age is: 20
Year of Passout: 2005
Subjects:["MATHEMATICS","PHYSICS","CHEMISTRY"]

The above is the detailed content of How to parse JSON to Gson tree model in Java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete