java.lang.RuntimeException:缺少类型参数

时间:2018-04-16 11:56:50

标签: java android gson

我的项目遇到了这个错误:

enter image description here

我尝试使用this链接

修复它

但我不能,因为我真的不明白答案。请告诉我如何解决它。感谢

1 个答案:

答案 0 :(得分:1)

班级TypeToken需要一个类型参数。

查看代码,看起来应该替换

Type listType = new TypeToken() {
}.getType();

Type listType = new TypeToken<List<Face>>() {
}.getType();