当前位置:   article > 正文

JSONObject

jsonobject

JSONObject

JSONObject 介绍

// JSONObject 是一个类     JSONObject jsonObject = new JSONObject();
// JSONObject 只是一种数据结构,可以理解为JSON格式的数据结构(key-value 结构),可以使用put方法给json对象添加元素。 
// JSONObject可以很方便的转换成字符串,也可以很方便的把其他对象转换成JSONObject对象。
   
  • 1
  • 2
  • 3
  • 4

JSONObject-lib包是一个beans(类),collections,maps,java arrays和xml和JSON互相转换的包。

JSON 的数据类型

(1)JSON中不区分整数、小数等类型,而统一使用Number来存储数字

(2)Array表示数组,以中括号"[]"括起来,元素之间以逗号分隔,元素可以为任意类型。

(3)Object表示对象,类似于C语言中的结构体,以花括号"{}“括起来,其元素要求为键值对,key必须为String类型的,而value则可为任意类型。key和value之间以”:"表示映射关系,元素之间也是以逗号分隔。

构建JSON

2.1 直接构建

直接构建即直接实例化一个JSONObject对象,而后调用其put()方法,将数据写入。put()方法的第一个参数为key值,必须为String类型,第二个参数为value,可以为boolean、double、int、long、Object、Map以及Collection等。当然,double以及int等类型只是在Java中,写入到json中时,统一都会以Number类型存储。

范例:

import org.json.JSONObject;

public class JSONObjectSample {

	public static void main(String[] args) {
		createJson();
	}

	private static void createJson() {
		JSONObject obj = new JSONObject();
		obj.put("name", "John");
		obj.put("sex", "male");
		obj.put("age", 22);
		obj.put("is_student", true);
		obj.put("hobbies", new String[] {"hiking", "swimming"});
		//调用toString()方法可直接将其内容打印出来
		System.out.println(obj.toString());										
	}

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

输出结果为:

{"hobbies":["hiking","swimming"],"sex":"male","name":"John","is_student":true,"age":22}
  • 1

这里可以看到,为了压缩大小以便于更高效地传输,json把所有空格、换行符等空白符全部去掉了。如果想要直观点看其内容,可以用一些在线的json解析器看,例如:http://www.jsoneditoronline.org/

2.2 使用HashMap构建

使用HashMap构建json,实际上即先创建好一个HashMap对象并且将数据打包进去,而后在创建JSONObject时将其作为一个参数传进去。

范例:

public class JSONObjectSample {

	public static void main(String[] args) {
		createJsonByMap();
	}

	private static void createJsonByMap() {
		Map<String, Object> data = new HashMap<String, Object>();
		data.put("name", "John");
		data.put("sex", "male");
		data.put("age", 22);
		data.put("is_student", true);
		data.put("hobbies", new String[] {"hiking", "swimming"});
        System.out.println(new JSONObject(data).toString())
	}

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

2.3 使用JavaBean构建

相较于前两种方法,实际开发中应用JavaBean构建json的情况更为常见,因为这样代码的重用率更高。

先把对象转换为JSON字符串 再转为 JSONObject

范例:

import org.json.JSONObject;

public class JSONObjectSample {

	public static void main(String[] args) {
		createJsonByJavaBean();
	}

	private static void createJsonByJavaBean() {
		PersonInfo info = new PersonInfo();
		info.setName("John");
		info.setSex("male");
		info.setAge(22);
		info.setStudent(true);
		info.setHobbies(new String[] {"hiking", "swimming"});
	    //生成json格式	  
        System.out.println(JSON.toJSON(info));
        
        // 对象转成string 
        String string = JSON.toJSON(info).toString();
        String s = JSON.toJSONString(info);
        String stuString = JSONObject.toJSONString(info);
        // String 转为JSONObject 
        JSONObject jsonObject = JSONObject.parseObject(stuString);
        System.out.println(jsonObject.getString("age"));
	}

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

需要注意一点,JavaBean一定要有getter方法,否则会无法访问存储的数据。

2.4 JSON字符串转换成JSONObject对象

 		System.out.println("=========JSON字符串转换成JSON对象===========");
        String studentString = "{\"id\":1,\"age\":2,\"name\":\"zhang\"}";
        JSONObject jsonObject2 = JSONObject.parseObject(studentString);
        System.out.println(jsonObject2.toJSONString());//{"name":"zhang","id":1,"age":2}
  • 1
  • 2
  • 3
  • 4

2.5.list集合对象转为listJson

list转json字符串 - > json字符串转listJson格式(parseArray)

		
		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转json字符串
        String string = JSON.toJSON(studentLsit).toString();
		String s = JSON.toJSONString(studentLsit);//(建议使用下面这种)

        System.out.println(string);

        //json字符串转listJson格式
        JSONArray jsonArray = JSONObject.parseArray(string);
		System.out.println(jsonArray.getString(1));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

2.6.string格式的list转成 list

 List<Student> studentList1 = new ArrayList<>();
        Student student1 = new Student(1,"1");
        Student student2 = new Student(2,"2");
        studentList1.add(student1);studentList1.add(student2);

        //      string格式的list转成 list
        List<Student> studentList = JSON.parseObject(JSONObject.toJSONString(studentList1),new 												TypeReference<ArrayList<Student>>(){});//JSON / JSONObject 都可
        for (Student stu :
                studentList) {
            System.out.println(stu.toString());
        }

        List<Student> studentList2 = JSON.parseArray(JSONObject.toJSONString(studentList1),Student.class);
		//这里JSONObject 也可以
		studentList2 = JSONObject.parseArray(JSONObject.toJSONString(studentList1),Student.class);

        for (Student stu :
                studentList2) {
            System.out.println(stu.toString());
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

解析JSON

解析json主要是基本类型如Number、boolean等,与数组Array。

基本类型的解析直接调用JSONObject对象的getXxx(key)方法,如果获取字符串则getString(key),布尔值则getBoolean(key),以此类推。

数组的解析稍微麻烦一点,需要通过JSONObject对象的getJSONArray(key)方法获取到一个JSONArray对象,再调用JSONArray对象的get(i)方法获取数组元素,i为索引值。

范例:

首先在工程目录"src/main/java"下创建一个json文件,用于解析。

demo.json:

{
  "hobbies": [
    "hiking",
    "swimming"
  ],
  "sex": "male",
  "name": "John",
  "is_student": true,
  "age": 22
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在pom.xml中加入对commons-io的依赖,以便于使用FileUtils进行文件访问:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.studying</groupId>
  <artifactId>myjson</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>myjson</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.json</groupId>
      <artifactId>json</artifactId>
      <version>20160810</version>
    </dependency>
    <!--加入对commons-io的依赖-->
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
    </dependency>
  </dependencies>
</project>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

主类:

import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;
import org.json.JSONArray;
import org.json.JSONObject;

public class JSONObjectSample {

	public static void main(String[] args) throws IOException {
		File file = new File("src/main/java/demo.json");
		String content = FileUtils.readFileToString(file);
		//对基本类型的解析
		JSONObject obj = new JSONObject(content);//自己使用的是阿里下面的包 不能这样创建对象 要调用parseObject()
		System.out.println("name:" + obj.getString("name"));
		System.out.println("sex:" + obj.getString("sex"));
		System.out.println("age" + obj.getInt("age"));
		System.out.println("is_student" + obj.getBoolean("is_student"));
		//对数组的解析
		JSONArray hobbies = obj.getJSONArray("hobbies");
		System.out.println("hobbies:");
		for (int i = 0; i < hobbies.length(); i++) {
			String s = (String) hobbies.get(i);
			System.out.println(s);
		}
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

自己做的时候遇到一个问题

JSONObject jsonObject3 = new JSONObject(map3);
//  这里如果是jsonObject 而不是 jsonObject3.toJSONString()
        map2.put("1",jsonObject3);
        map2.put("7",jsonObject3);

        JSONObject jsonObject2 = new JSONObject(map2);
        System.out.println(jsonObject2);//{"1":{"文本":[2,22],"红包":[1,11]},"7":{"$ref":"$.1"}} 
就会出现上面的情况 "$ref":"$.1"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

总结 JSONObject

集合,对象想要转换为 JSONObject

要先转换为 json 字符串 之后 再转换为 JSONObject 或者 JSONArray

如下:

//      list 对象 转换为 listJson
		List<Student> studentLsit = new ArrayList<>();
        Student student1 = new Student(1,"1");
        Student student2 = new Student(2,"2");
        studentLsit.add(student1);studentLsit.add(student2);

        //list转json字符串
//        Object toJSON = JSON.toJSON(studentLsit);
//        System.out.println(JSON.toJSON(studentLsit).getClass());//class com.alibaba.fastjson.JSONArray

//        String s = JSON.toJSONString(studentLsit);
//        String string = JSON.toJSON(studentLsit).toString();
        String s1 = JSONObject.toJSONString(studentLsit);

        //json字符串转listJson格式
        JSONArray jsonArray = JSONObject.parseArray(s1);
        System.out.println(jsonArray.getString(1));

//		java Bean 类  转换为 JSONObject
        Student student = new Student(12,"asd");
//        String s1 = JSON.toJSONString(student);
        String s = JSONObject.toJSONString(student);
        JSONObject jsonObject = JSONObject.parseObject(s1);
        System.out.println(jsonObject.getString("age"));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

在这里插入图片描述
在这里插入图片描述

参考

https://www.cnblogs.com/joahyau/p/6736637.html

https://blog.csdn.net/u012448904/article/details/84292821

https://www.jb51.net/article/76571.htm

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/503613
推荐阅读
相关标签
  

闽ICP备14008679号