美文网首页程序人生
Android中Json字符串映射数据类

Android中Json字符串映射数据类

作者: 为自己代颜_ | 来源:发表于2022-05-25 09:53 被阅读0次
    val sGson = Gson()
    var mReminders = sGson.fromJson<MutableList<ReminderItemInfo>>(
            remindersJson,
            object : TypeToken<MutableList<ReminderItemInfo>>() {}.type
        )

remindersJson为字符串,后台返回的数据可在www.json.cn中压缩转义
ReminderItemInfo为Json列表的model对象

相关文章

网友评论

    本文标题:Android中Json字符串映射数据类

    本文链接:https://www.haomeiwen.com/subject/ecdsprtx.html