Gson用法
Posted guaosky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gson用法相关的知识,希望对你有一定的参考价值。
记录下最近对Gson的使用方法,待完善。。
?
1. 创建一个Gson对象
Gson gson = new GsonBuilder().serializeNulls().create();
serializeNulls():序列化null值字段,因为Gson默认不序列化空值:
Configure Gson to serialize null fields. By default, Gson omits all fields that are null during serialization.
?
2. 解析示例
String str = "{"apple":{"weight":12,"color":"red"},"people":{"name":"xiaoming","age":18}}"
?
方法一: 解析成JSONObject形式
JsonObject o = gson.fromJson(str, JsonObject.class);
JsonElement element = o.get("people");
JsonElement element1 = o.get("apple");
People people1 = gson.fromJson(element, People.class);
Apple apple1 = gson.fromJson(element1, Apple.class);
?
方法二:解析成新JavaBean
新建JavaBean:BianTai.java
注意:如果JavaBean的字段名与Json字符串的键名不一样需要@SerializedName("json键名")来指定值的反序列化
@Data
@ToString
public class BianTai {
private Apple apple;
@Data
private static class Apple{
private Integer weight;
private String color;
}
private People people;
@Data
private static class People{
private String name;
private Integer age;
}
}
直接解析成BianTai
BianTai bianTai = gson.fromJson(str, BianTai.class);
结果
BianTai(apple=BianTai.Apple(weight=12, color=null), people=BianTai.People(name=xiaoming, age=18))
以上是关于Gson用法的主要内容,如果未能解决你的问题,请参考以下文章