如何在 Java 中对 JSONObject 进行排序?\

javajsonobject oriented programmingprogramming

JSONObject 无序 键、值对 集合,值可以是以下任何类型,例如 Boolean、JSONArray、JSONObject、NumberString。JSONObject 的构造函数可用于将外部形式的 JSON 文本转换为内部形式,其值可使用 get()opt()  方法检索,或使用 put()toString() 方法将值转换为 JSON 文本。

在下面的示例中,我们可以按降序对 JSONObject 的值进行排序。

示例

import org.json.*;
import java.util.*;
public class JSonObjectSortingTest {
   public static void main(String[] args) {
      List<Student> list = new ArrayList<>();
      try {
         JSONObject jsonObj = new JSONObject();
         jsonObj.put("Raja", 123);
         jsonObj.put("Jai", 789);
         jsonObj.put("Adithya", 456);
         jsonObj.put("Ravi", 111);
         Iterator<?> keys = jsonObj.keys();
         Student student;
         while(keys.hasNext()) {
            String key = (String) keys.next();
            student = new Student(key, jsonObj.optInt(key));
            list.add(student);
         }
         Collections.sort(list, new Comparator<Student>() {
            @Override            public int compare(Student s1, Student s2) {
               return Integer.compare(s2.pwd, s1.pwd);
            }
         });
         System.out.println("The values of JSONObject in the descending order:");
         for(Student s : list) {
            System.out.println(s.pwd);
         }
      } catch(JSONException e) {
         e.printStackTrace();
      }
   }
}
// Student classclass Student {
   String username;
   int pwd;
   Student(String username, int pwd) {
      this.username = username;
      this.pwd = pwd;
   }
}

输出

The values of JSONObject in the descending order:789
456
123
111

相关文章