Home > Java > javaTutorial > body text

How to parse JSON to Gson tree model in Java?

PHPz
Release: 2023-08-27 17:25:05
forward
538 people have browsed it

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()
Copy after login

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;;
   }
}
Copy after login

Output

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

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!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!