Android Gson使用详解,android开发基础书

本文详细介绍了Android中Gson库的使用,包括基本用法如创建Gson对象、生成Json,以及Json与数组、List的转化。还深入讨论了属性重命名、字段过滤的各种策略,如基于@Expose注解、版本控制、访问修饰符和自定义策略。
摘要由CSDN通过智能技术生成

Gson 的 GitHub 主页点击这里:Gson

一、Gson的基本用法

1.1、Gson对象

在进行序列化与反序列操作前,需要先实例化一个 com .google.gson.Gson 对象,获取 Gson 对象的方法有两种

//通过构造函数来获取
Gson gson = new Gson();
//通过 GsonBuilder 来获取,可以进行多项特殊配置
Gson gson = new GsonBuilder().create();

1.2、生成 Json

利用 Gson 可以很方便地生成 Json 字符串,通过使用 addProperty 的四个重载方法

public static void main(String[] args) {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty(“String”, “leavesC”);
jsonObject.addProperty(“Number_Integer”, 23);
jsonObject.addProperty(“Number_Double”, 22.9);
jsonOb

《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享

ject.addProperty(“Boolean”, true);
jsonObject.addProperty(“Char”, ‘c’);
System.out.println();
System.out.println(jsonObject);
}

addProperty 方法底层调用的是 add(String property, JsonElement value) 方法,即将基本数据类型转化为了 JsonElement 对象,JsonElement 是一个抽象类,而 JsonObject 继承了 JsonElement ,因此我们可以通过 JsonObject 自己来构建一个 JsonElement

public static void main(String[] args) {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty(“String”, “leavesC”);
jsonObject.addProperty(“Number”, 23);
jsonObject.addProperty(“Number”, 22.9);
jsonObject.addProperty(“Boolean”, true);
jsonObject.addProperty(“Char”, ‘c’);

JsonObject jsonElement = new JsonObject();
jsonElement.addProperty(“Boolean”, false);
jsonElement.addProperty(“Double”, 25.9);
jsonElement.addProperty(“Char”, ‘c’);
jsonObject.add(“JsonElement”, jsonElement);

System.out.println();
System.out.println(jsonObject);
}

1.3、Json与数组、List的转化

Json数组 与 字符串数组

public static void main(String[] args) {
//Json数组 转为 字符串数组
Gson gson = new Gson();
String jsonArray = “[“https://github.com/leavesC”,“https://www.jianshu.com/u/9df45b87cfdf”,“Java”,“Kotlin”,“Git”,“GitHub”]”;
String[] strings = gson.fromJson(jsonArray, String[].class);
System.out.println("Json数组 转为 字符串数组: “);
for (String string : strings) {
System.out.println(string);
}
//字符串数组 转为 Json数组
jsonArray = gson.toJson(jsonArray, new TypeToken() {
}.getType());
System.out.println(”\n字符串数组 转为 Json数组: ");
System.out.println(jsonArray);
}

Json数组 与 List

public static void main(String[] args) {
//Json数组 转为 List
Gson gson = new Gson();
String jsonArray = “[“https://github.com/leavesC”,“https://www.jianshu.com/u/9df45b87cfdf”,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值