今天在使用kotlin编写项目中的地址选择器的功能中,在json数据解析上卡了好久:
一开始的代码写成了这样:
val fromJsons =
Gson().fromJson<List<AeraBean>>(
FileUtils.getJsonReader(view.context, "aera.json"),
MutableList::class.java)//类型参数使用了MutableList的类型
.toMutableList()
// ↑↑↑ 这种方法并没有成功解析为指定泛型的集合
// 而是解析成为了一种键值对,它擦除了我们的泛型
尝试将泛型写入到fromJson的第二个参数中:
val fromJsons =
Gson().fromJson<List<AeraBean>>(
FileUtils.getJsonReader(view.context, "aera.json"),
MutableList<AeraBean>::class.java)//编译器报错。。
.toMutableList()
疯狂搜索后发现了--- Array:
val fromJson =
Gson().fromJson<List<AeraBean>>(
FileUtils.getJsonReader(view.context, "aera.json"),
Array<AeraBean>::class.java
).toMutableList()
这样子就解决了上面遇到的问题,感谢:
https://blog.csdn.net/baidu_28558165/article/details/79300222
网友评论