Home > Java > Java Tutorial > body text

How to parse and traverse JSON array in JAVA? Master JSON array processing skills.

WBOY
Release: 2023-09-06 11:30:44
Original
496 people have browsed it

How to parse and traverse JSON array in JAVA? Master JSON array processing skills.

How to parse and traverse JSON arrays in JAVA? Master JSON array processing skills.

With the rapid development of the modern Internet, JSON (JavaScript Object Notation) has become a commonly used data exchange format. It is concise, easy to read, and very suitable for data transmission in web development and API interfaces. In JAVA, parsing and traversing JSON arrays are very common operations. This article will introduce how to use JAVA to parse JSON arrays and give corresponding code examples.

First, we need to import the relevant libraries to process JSON. In JAVA, you can use some third-party libraries, such as Jackson, Gson, etc. Here, we take the Jackson library as an example to introduce. First, add the corresponding dependencies to your project:


    com.fasterxml.jackson.core
    jackson-core
    2.12.3


    com.fasterxml.jackson.core
    jackson-databind
    2.12.3
Copy after login

The following is a simple JSON array example:

[
    {
        "name": "Alice",
        "age": 25
    },
    {
        "name": "Bob",
        "age": 28
    },
    {
        "name": "Charlie",
        "age": 30
    }
]
Copy after login

Next, let’s take a look at how to use JAVA to parse and traverse this JSON array.

First, we need to define a POJO class (Plain Old Java Object) to map the data in JSON. For the above JSON array example, we can define a Person class:

public class Person {
    private String name;
    private int age;

    // 省略getter和setter方法
}
Copy after login

We can then use the following code to parse the JSON array:

import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.IOException;

public class JsonArrayParsingExample {
    public static void main(String[] args) {
        String json = "[{"name":"Alice","age":25},{"name":"Bob","age":28},{"name":"Charlie","age":30}]";

        ObjectMapper objectMapper = new ObjectMapper();
        try {
            Person[] persons = objectMapper.readValue(json, Person[].class);

            // 遍历数组
            for (Person person : persons) {
                System.out.println("Name: " + person.getName() + ", Age: " + person.getAge());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
Copy after login

First, we create An instance of ObjectMapper is created, which is the core class of the Jackson library and is used to process JSON. We then use the readValue method to convert the JSON string into an array of Person objects. Finally, we iterate through the array and print out each person's name and age.

The above code output:

Name: Alice, Age: 25
Name: Bob, Age: 28
Name: Charlie, Age: 30
Copy after login

If each object in the JSON array has a different structure, we can use the JsonNode object to process it. JsonNode is an abstract class used to represent JSON nodes in the Jackson library. The following is an example of processing JSON arrays of different structures:

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

import java.io.IOException;

public class JsonArrayParsingExample {
    public static void main(String[] args) {
        String json = "[{"name":"Alice","age":25},{"title":"Software Engineer","salary":5000}]";

        ObjectMapper objectMapper = new ObjectMapper();
        try {
            JsonNode[] nodes = objectMapper.readValue(json, JsonNode[].class);

            // 遍历数组
            for (JsonNode node : nodes) {
                // 判断节点类型
                if (node.has("name")) {
                    String name = node.get("name").asText();
                    int age = node.get("age").asInt();
                    System.out.println("Name: " + name + ", Age: " + age);
                } else if (node.has("title")) {
                    String title = node.get("title").asText();
                    int salary = node.get("salary").asInt();
                    System.out.println("Title: " + title + ", Salary: " + salary);
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
Copy after login

Output:

Name: Alice, Age: 25
Title: Software Engineer, Salary: 5000
Copy after login

The above is a simple example of parsing and traversing JSON arrays in JAVA. Mastering these basic skills, you can easily process the JSON data returned from the server, extract the required information for further processing and display. Hope this article is helpful to you!

The above is the detailed content of How to parse and traverse JSON array in JAVA? Master JSON array processing skills.. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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!