JSON格式及FastJson使用详解

  • 方式一是通过jsonArray.size()获取JSONArray中元素的个数,

  • 再通过getJSONObject(index)获取相应位置的JSONObject,在利用JSONObject的get()进行取值

  • 方式二是通过jsonArray.iterator()获取迭代器

*/

// 遍历方式一

// int size = jsonArray.size();

// for(int i = 0;i < size;i++){

// JSONObject jsonObject = jsonArray.getJSONObject(i);

// System.out.println("studentName: " + jsonObject.getString(“studentName”) + ",StudentAge: " + jsonObject.getInteger(“studentAge”));

// }

// 遍历方式二

Iterator iterator = jsonArray.iterator();

while (iterator.hasNext()){

JSONObject jsonObject = (JSONObject) iterator.next();

System.out.println("studentName: " + jsonObject.getString(“studentName”) + ",StudentAge: " + jsonObject.getInteger(“studentAge”));

}

}

3.4 JSONArray—》json字符串


用JSON.toJSONString()方法即可将JSONArray转化为JSON字符串

/**

  • JSONArray到json字符串-数组类型的转换

*/

@Test

public void JSONArrayToJSONString(){

JSONArray jsonArray = JSON.parseArray(JSON_ARRAY_STR);

String s = JSON.toJSONString(jsonArray);

System.out.println(s);

}

3.5 复杂JSON格式字符串—》JSONObject


将复杂JSON格式字符串转换为JSONObject,也是通过JSON.parseObject()

/**

  • 将复杂JSON格式字符串转换为JSONObject,也是通过JSON.parseObject(),可以取其中的部分

*/

@Test

public void JSONStringTOJSONObject(){

JSONObject jsonObject = JSON.parseObject(COMPLEX_JSON_STR);

// 获取简单对象

String teacherName = jsonObject.getString(“teacherName”);

Integer teacherAge = jsonObject.getInteger(“teacherAge”);

System.out.println("teacherName: " + teacherName + ",teacherAge " + teacherAge);

// 获取JSONObject对象

JSONObject course = jsonObject.getJSONObject(“course”);

// 获取JSONObject中的数据

String courseName = course.getString(“courseName”);

Integer code = course.getInteger(“code”);

System.out.println("courseName: " + courseName + " code: " + code);

// 获取JSONArray对象

JSONArray students = jsonObject.getJSONArray(“students”);

// 获取JSONArray的中的数据

Iterator iterator = students.iterator();

while (iterator.hasNext()){

JSONObject jsonObject1 = (JSONObject) iterator.next();

System.out.println("studentName: " + jsonObject1.getString(“studentName”) + ",StudentAge: "

  • jsonObject1.getInteger(“studentAge”));

}

}

3.6 复杂JSONObject—》json字符串


用JSON.toJSONString()方法即可将复杂JSONObject转化为JSON字符串

/**

  • 复杂JSONObject到json字符串的转换

*/

@Test

public void JSONObjectTOJSON(){

JSONObject jsonObject = JSON.parseObject(COMPLEX_JSON_STR);

String s = JSON.toJSONString(jsonObject);

System.out.println(s);

}

3.7 json字符串—》JavaBean


定义JavaBean类

package com.fastjson;

public class Student {

private String studentName;

private int studentAge;

public Student() {

}

public Student(String studentName, int studentAge) {

this.studentName = studentName;

this.studentAge = studentAge;

}

public String getStudentName() {

return studentName;

}

public void setStudentName(String studentName) {

this.studentName = studentName;

}

public int getStudentAge() {

return studentAge;

}

public void setStudentAge(int studentAge) {

this.studentAge = studentAge;

}

@Override

public String toString() {

return “Student{” +

“studentName='” + studentName + ‘’’ +

“, studentAge=” + studentAge +

‘}’;

}

}

package com.jiyong.config;

/**

  • 对于复杂嵌套的JSON格式,利用JavaBean进行转换的时候要注意

  • 1、有几个JSONObject就定义几个JavaBean

  • 2、内层的JSONObject对应的JavaBean作为外层JSONObject对应的JavaBean的一个属性

  • 3、解析方法有两种

  • 第一种方式,使用TypeReference类

  • Teacher teacher = JSONObject.parseObject(COMPLEX_JSON_STR, new TypeReference() {})

  • 第二种方式,使用Gson思想

  • Teacher teacher = JSONObject.parseObject(COMPLEX_JSON_STR, Teacher.class);

*/

import java.util.List;

public class Teacher {

private String teacherName;

private int teacherAge;

private Course course;

private List students;

public Teacher() {

}

public Teacher(String teacherName, int teacherAge, Course course, List students) {

this.teacherName = teacherName;

this.teacherAge = teacherAge;

this.course = course;

this.students = students;

}

public String getTeacherName() {

return teacherName;

}

public void setTeacherName(String teacherName) {

this.teacherName = teacherName;

}

public int getTeacherAge() {

return teacherAge;

}

public void setTeacherAge(int teacherAge) {

this.teacherAge = teacherAge;

}

public Course getCourse() {

return course;

}

public void setCourse(Course course) {

this.course = course;

}

public List getStudents() {

return students;

}

public void setStudents(List students) {

this.students = students;

}

@Override

public String toString() {

return “Teacher{” +

“teacherName='” + teacherName + ‘’’ +

“, teacherAge=” + teacherAge +

“, course=” + course +

“, students=” + students +

‘}’;

}

}

package com.jiyong.config;

public class Course {

private String courseName;

private int code;

public Course() {

}

public Course(String courseName, int code) {

this.courseName = courseName;

this.code = code;

}

public String getCourseName() {

return courseName;

}

public void setCourseName(String courseName) {

this.courseName = courseName;

}

public int getCode() {

return code;

}

public void setCode(int code) {

this.code = code;

}

@Override

public String toString() {

return “Course{” +

“courseName='” + courseName + ‘’’ +

“, code=” + code +

‘}’;

}

}

Jason字符串转换为JavaBean有三种方式,推荐通过反射的方式。

/**

  • json字符串-简单对象到JavaBean之间的转换

  • 1、定义JavaBean对象

  • 2、Jason字符串转换为JavaBean有三种方式,推荐通过反射的方式

*/

@Test

public void JSONStringToJavaBeanObj(){

// 第一种方式

JSONObject jsonObject = JSON.parseObject(JSON_OBJ_STR);

String studentName = jsonObject.getString(“studentName”);

Integer studentAge = jsonObject.getInteger(“studentAge”);

Student student = new Student(studentName, studentAge);

// 第二种方式,//第二种方式,使用TypeReference类,由于其构造方法使用protected进行修饰,故创建其子类

Student student1 = JSON.parseObject(JSON_OBJ_STR, new TypeReference() {});

// 第三种方式,通过反射,建议这种方式

Student student2 = JSON.parseObject(JSON_OBJ_STR, Student.class);

}

3.8 JavaBean —》json字符串


也是通过JSON的toJSONString,不管是JSONObject、JSONArray还是JavaBean转为为JSON字符串都是通过JSON的toJSONString方法。

/**

  • JavaBean转换为Json字符串,也是通过JSON的toJSONString,不管是JSONObject、JSONArray还是JavaBean转为为JSON字符串都是通过JSON的toJSONString方法

*/

@Test

public void JavaBeanToJsonString(){

Student lily = new Student(“lily”, 12);

String s = JSON.toJSONString(lily);

System.out.println(s);

}

3.8 json字符串数组—》JavaBean-List


/**

  • json字符串-数组类型到JavaBean_List的转换

*/

@Test

public void JSONStrToJavaBeanList(){

// 方式一:

JSONArray jsonArray = JSON.parseArray(JSON_ARRAY_STR);

//遍历JSONArray

List students = new ArrayList();

Iterator iterator = jsonArray.iterator();

while (iterator.hasNext()){

JSONObject next = (JSONObject) iterator.next();

String studentName = next.getString(“studentName”);

Integer studentAge = next.getInteger(“studentAge”);

Student student = new Student(studentName, studentAge);

students.add(student);

}

// 方式二,使用TypeReference类,由于其构造方法使用protected进行修饰,故创建其子类

List studentList = JSON.parseObject(JSON_ARRAY_STR,new TypeReference<ArrayList>() {});

// 方式三,使用反射

List students1 = JSON.parseArray(JSON_ARRAY_STR, Student.class);

System.out.println(students1);

}

3.10 JavaBean-List —》json字符串数组


/**

  • JavaBean_List到json字符串-数组类型的转换,直接调用JSON.toJSONString()方法即可

*/

@Test

public void JavaBeanListToJSONStr(){

Student student = new Student(“lily”, 12);

Student student1 = new Student(“lucy”, 13);

List students = new ArrayList();

students.add(student);

students.add(student1);

String s = JSON.toJSONString(student);

System.out.println(s);

}

3.11 复杂嵌套json格式字符串—》JavaBean_obj


对于复杂嵌套的JSON格式,利用JavaBean进行转换的时候要注意:

  • 有几个JSONObject就定义几个JavaBean内层的JSONObject

  • 对应的JavaBean作为外层JSONObject对应的JavaBean的一个属性

/**

  • 复杂json格式字符串到JavaBean_obj的转换

*/

@Test

public void ComplexJsonStrToJavaBean(){

//第一种方式,使用TypeReference类,由于其构造方法使用protected进行修饰,故创建其子类

Teacher teacher = JSON.parseObject(COMPLEX_JSON_STR, new TypeReference() {});

// 第二种方式,使用反射

Teacher teacher1 = JSON.parseObject(COMPLEX_JSON_STR, Teacher.class);

}

3.12 JavaBean_obj —》复杂json格式字符串


/**

  • 复杂JavaBean_obj到json格式字符串的转换

*/

@Test

public void JavaBeanToComplexJSONStr(){

最后

对于很多Java工程师而言,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长且无助。

整理的这些资料希望对Java开发的朋友们有所参考以及少走弯路,本文的重点是你有没有收获与成长,其余的都不重要,希望读者们能谨记这一点。

再分享一波我的Java面试真题+视频学习详解+技能进阶书籍

美团二面惜败,我的凉经复盘(附学习笔记+面试整理+进阶书籍)

符串到JavaBean_obj的转换

*/

@Test

public void ComplexJsonStrToJavaBean(){

//第一种方式,使用TypeReference类,由于其构造方法使用protected进行修饰,故创建其子类

Teacher teacher = JSON.parseObject(COMPLEX_JSON_STR, new TypeReference() {});

// 第二种方式,使用反射

Teacher teacher1 = JSON.parseObject(COMPLEX_JSON_STR, Teacher.class);

}

3.12 JavaBean_obj —》复杂json格式字符串


/**

  • 复杂JavaBean_obj到json格式字符串的转换

*/

@Test

public void JavaBeanToComplexJSONStr(){

最后

对于很多Java工程师而言,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长且无助。

整理的这些资料希望对Java开发的朋友们有所参考以及少走弯路,本文的重点是你有没有收获与成长,其余的都不重要,希望读者们能谨记这一点。

再分享一波我的Java面试真题+视频学习详解+技能进阶书籍

[外链图片转存中…(img-7ldn4P0C-1719201117372)]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值