Detailed explanation of JSONObject usage

Detailed explanation of JSONObject usage

JSONObject is just a data structure, which can be understood as a data structure in JSON format ( key-value structure). You can use the put method to add elements to the JSON object. JSONObject can be easily converted into a string, and other objects can also be easily converted into JSONObject objects.

pom:

 <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.28</version>
        </dependency>

1. Generate json data format natively.

JSONObject zhangsan = new JSONObject();
        try {
            //Add zhangsan.put("name", "张三");
            zhangsan.put("age", 18.4);
            zhangsan.put("birthday", "1900-20-03");
            zhangsan.put("majar", new String[] {"哈哈","嘿嘿"});
            zhangsan.put("null", null);
            zhangsan.put("house", false);
            System.out.println(zhangsan.toString());
        } catch (JSONException e) {
            e.printStackTrace();
        }

2. Generated through hashMap data structure

     HashMap<String, Object> zhangsan = new HashMap<>();
        
        zhangsan.put("name", "张三");
        zhangsan.put("age", 18.4);
        zhangsan.put("birthday", "1900-20-03");
        zhangsan.put("majar", new String[] {"哈哈","嘿嘿"});
        zhangsan.put("null", null);
        zhangsan.put("house", false);
        System.out.println(new JSONObject(zhangsan).toString());

3. Generate through entities

        Student student = new Student();
        student.setId(1);
        student.setAge("20");
        student.setName("张三");
        //Generate json format System.out.println(JSON.toJSON(student));
        //Convert the object to string
        String stuString = JSONObject.toJSONString(student);

4.Convert JSON string into JSON object

String studentString = "{\"id\":1,\"age\":2,\"name\":\"zhang\"}";
 
//Convert JSON string into JSON object JSONObject jsonObject1 = JSONObject.parseObject(stuString);
 
System.out.println(jsonObject1);

5. Convert list object to listJson

ArrayList<Student> studentLsit = new ArrayList<>();
        Student student1 = new Student();
        student1.setId(1);
        student1.setAge("20");
        student1.setName("asdasdasd");
 
        studentLsit.add(student1);
 
        Student student2 = new Student();
        student2.setId(2);
        student2.setAge("20");
        student2.setName("aaaa:;aaa");
 
        studentLsit.add(student2);
 
        // list to json string String string = JSON.toJSON(studentLsit).toString();
        System.out.println(string);
 
        //Convert json string to listJson format JSONArray jsonArray = JSONObject.parseArray(string);
 
        System.out.println(jsonArray);

Alibaba's json is very easy to use, and Google's Gson is also good. If you are interested, you can take a look

This concludes this article on the detailed usage of JSONObject. I hope it will be helpful for everyone’s study, and I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Java JSONObject and JSONArray object case study
  • Conversion between JSONObject objects and Map objects in JAVA
  • Detailed explanation of String JSONObject JSONArray List<entity class> conversion in Java
  • Analysis of JSONObject and JSONArray usage
  • Java uses JSONObject to operate json instance parsing
  • Detailed explanation of the difference between JSONObject and JSONArray in Java
  • Methods for converting JSON string to JSONObject and JSONArray
  • Use of JSONObject and JSONArray
  • Detailed explanation of how to use JSONObject

<<:  Tutorial on installing mysql5.7.36 database in Linux environment

>>:  Use html-webpack-plugin' to generate HTML page plugin in memory

Recommend

js to achieve floor scrolling effect

This article uses jQuery to implement the sliding...

JavaScript to achieve a simple page countdown

This article example shares the specific code of ...

Pure CSS3 mind map style example

Mind Map He probably looks like this: Most of the...

How to monitor array changes in JavaScript

Preface When introducing defineProperty before, I...

How to keep running after exiting Docker container

Phenomenon: Run an image, for example, ubuntu14.0...

Detailed explanation of querying JSON format fields in MySQL

During the work development process, a requiremen...

Vue implements card flip carousel display

Vue card flip carousel display, while switching d...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

How to create LVM for XFS file system in Ubuntu

Preface lvm (Logical Volume Manager) logical volu...

Vue3+TypeScript implements a complete example of a recursive menu component

Table of contents Preface need accomplish First R...

Detailed explanation of the solution to docker-compose being too slow

There is only one solution, that is to change the...

Solve the problem of resetting the Mysql root user account password

Problem description: The following error message ...

jQuery plugin to achieve carousel effect

A jQuery plugin every day - jQuery plugin to impl...

VMware installation of Centos8 system tutorial diagram (Chinese graphical mode)

Table of contents 1. Software and system image 2....

Summary of MySQL date and time functions (MySQL 5.X)

1. MySQL gets the current date and time function ...