通过改造(GSON)将json映射到对象

时间:2015-09-13 07:32:12

标签: android json gson retrofit

我从服务器获得的Json是:

 {
"data" :   [
      { "id":1, "url": "http://example.com/image1"   },
      { "id":2, "url": "http://example.com/image2"   },
      { "id":3, "url": "http://example.com/image3"   }
  ]
}

和我用于映射的类是

public class Repository {
    private List<Event> events;
}

虽然我从改造中获得了成功但我无法将其映射到我的对象。 我还有一个带有int id和String url的类Event

0 个答案:

没有答案