1

使用 Gson 将 JSON 反序列化为对象时出现以下异常:

com.google.gson.JsonParseException: JsonDeserializer com.google.gson.DefaultTypeAdapters$CollectionTypeAdapter@588722d6 未能反序列化 json 对象 [{"time":1378911600000,"total":0},{"time":1378912500000,"total ":0},{"time":1378913400000,"total":2,"sum":130000,"avgLen":65000.0}] 给定类型 com.google.gson.ParameterizedTypeImpl@490ca2fa

应该代表 JSON 的类是:

public class Api{

   private List<ApiData> avgEngLength;

   public Api() {
   }
}

public class ApiData{

private Long time;
private Long total;
private Long sum;
private Double avgLen;

public ApiData(Long time, Long total, Long sum, Double avgLen) {
    this.time = time;
    this.total= total;
    this.sum= sum;
    this.avgLen= avgLen;
 }
}

反序列化的代码是:

 String json = "{\"avgEngLength\":[{\"time\":1378905300000,\"total\":0},{\"time\":1378906200000,\"total\":2,\"sum\":130000,\"avgLen\":65000.0}]}";
 Gson gson = new GsonBuilder().create();
 return gson.fromJson(json, Api.class);

奇怪的是,它适用于某些机器而不适用于其他机器。任何想法?

4

1 回答 1

0

我用这个试过你的例子:

public static void main(String[] args) {

    String s = "{\"avgEngLength\":[{\"time\":1378905300000,\"total\":0},{\"time\":1378906200000,\"total\":2,\"sum\":130000,\"avgLen\":65000.0}]}";

    Gson gson = new GsonBuilder().create();
    Api a = gson.fromJson(s, Api.class);
    System.out.println(a);
    }

它起作用了(请注意,示例中的字符串没有转义引号)。

Api [avgEngLength=[ApiData [time=1378905300000, total=0, sum=null, avgLen=null], ApiData [time=1378906200000, total=2, sum=130000, avgLen=65000.0]]]

所以我最好的猜测是你的团队正在使用不同版本的库。我正在使用 Gson 2.2.4 并检查了源代码:库中不存在该错误字符串。

于 2013-09-12T05:51:10.610 回答