Home > Java > javaTutorial > body text

Detailed explanation of sorting and filtering operations of JSON arrays in Java.

WBOY
Release: 2023-09-06 15:22:45
Original
1033 people have browsed it

Detailed explanation of sorting and filtering operations of JSON arrays in Java.

Detailed explanation of sorting and filtering operations of JSON arrays in Java

In Java development, processing JSON data is a common task. As one of the commonly used data structures, JSON array often requires sorting and filtering operations in practical applications. This article will introduce in detail the sorting and filtering operations of JSON arrays in Java and provide corresponding code examples.

1. Sorting operation of JSON array

  1. Use JSONArray object to store JSON array

In Java, using the json library to process JSON data is a common way. Among them, the json library provides the JSONArray class for storing JSON arrays.

First, we need to import the following dependencies:

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
Copy after login

Then, through the constructor method of the JSONArray class, convert the JSON string into a JSONArray object:

String jsonString = "[{"name":"Tom","age":30},{"name":"Jerry","age":20}]";
JSONArray jsonArray = new JSONArray(jsonString);
Copy after login
  1. Use Comparator interface for sorting

In Java, you can use the Comparator interface to define sorting rules. We can customize a Comparator object to specify which field to sort by. The sample code is as follows:

import java.util.Comparator;

class UserComparator implements Comparator<JSONObject> {
    public int compare(JSONObject obj1, JSONObject obj2) {
        try {
            int age1 = obj1.getInt("age");
            int age2 = obj2.getInt("age");
            return Integer.compare(age1, age2);
        } catch (JSONException e) {
            e.printStackTrace();
            return 0;
        }
    }
}
Copy after login

In the above example, we customized a UserComparator class, implemented the Comparator interface, and overridden the compare method. The compare method returns the corresponding sorting results by getting the age field of two JSONObject objects, comparing their sizes.

  1. Sort the JSON array

With the Comparator object, we can sort the JSON array through the sort method of the Collections class. The sample code is as follows:

List<JSONObject> list = new ArrayList<>();
for (int i = 0; i < jsonArray.length(); i++) {
    try {
        JSONObject obj = jsonArray.getJSONObject(i);
        list.add(obj);
    } catch (JSONException e) {
        e.printStackTrace();
    }
}
Collections.sort(list, new UserComparator());
Copy after login

In the above example, each JSONObject object is added to a List by looping through the JSON array. Then, the List is sorted through the sort method of the Collections class, and the sorting rules are defined by the UserComparator object.

  1. Output the sorted results

Through the above operations, we have sorted the JSON array according to the specified sorting rules. Next, we can convert the sorted results into a JSON array and output it to the console. The sample code is as follows:

JSONArray sortedJsonArray = new JSONArray(list);
System.out.println(sortedJsonArray.toString());
Copy after login

Convert the sorted results into JSON characters by calling the toString method of the JSONArray object string and output to the console.

2. JSON array filtering operation

  1. Use the Predicate interface for filtering

In Java 8 and above, you can use the Predicate interface for filtering filter operation. We can customize a Predicate object to specify filtering conditions. The sample code is as follows:

import java.util.function.Predicate;

class AgeFilter implements Predicate<JSONObject> {
    public boolean test(JSONObject obj) {
        try {
            int age = obj.getInt("age");
            return age >= 25;
        } catch (JSONException e) {
            e.printStackTrace();
            return false;
        }
    }
}
Copy after login

In the above example, we customized an AgeFilter class, implemented the Predicate interface, and overridden the test method. The test method obtains the age field of the JSONObject object, determines whether it is greater than or equal to 25, and returns the corresponding filtering result.

  1. Filtering the JSON array

With the Predicate object, we can filter the JSON array through the Stream API. The sample code is as follows:

List<JSONObject> filteredList = list.stream()
        .filter(new AgeFilter())
        .collect(Collectors.toList());
Copy after login

In the above example, the List is converted into a Stream object by calling the stream method of the List object. Then, through the filter method of the Stream object, specify the Predicate object as the filtering rule, and use the collect method to collect the filtered results into another List.

  1. Output the filtered results

Through the above operations, we have filtered the JSON array according to the specified filtering rules. Next, we can convert the filtered results into a JSON array and output it to the console. The sample code is as follows:

JSONArray filteredJsonArray = new JSONArray(filteredList);
System.out.println(filteredJsonArray.toString());
Copy after login

Convert the filtered results into JSON characters by calling the toString method of the JSONArray object string and output to the console.

Summary:

This article details the sorting and filtering operations of JSON arrays in Java and provides corresponding code examples. By sorting and filtering the JSON array, we can get the data we need based on actual needs. Using these operations can improve the efficiency and accuracy of our processing of JSON data. I hope this article will be helpful to readers in actual development.

The above is the detailed content of Detailed explanation of sorting and filtering operations of JSON arrays in Java.. For more information, please follow other related articles on the PHP Chinese website!

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!