我有以下的JSON提要:閱讀JSON與改造
{
collection_name: "My First Collection",
username: "Alias",
collection: {
1: {
photo_id: 1,
owner: "Some Owner",
title: "Lightening McQueen",
url: "http://hesp.suroot.com/elliot/muzei/public/images/randomhash1.jpg"
},
2: {
photo_id: 2,
owner: "Awesome Painter",
title: "Orange Plane",
url: "http://hesp.suroot.com/elliot/muzei/public/images/randomhash2.jpg"
}
}
}
我所試圖做的就是集合的內容 - photo_id,所有者,標題和URL。我有以下的代碼,但是我得到GSON JSON錯誤:
@GET("/elliot/muzei/public/collection/{collection}")
PhotosResponse getPhotos(@Path("collection") String collectionID);
static class PhotosResponse {
List<Photo> collection;
}
static class Photo {
int photo_id;
String title;
String owner;
String url;
}
}
我想我的代碼是正確的,以獲得JSON的飼料,但我不那麼肯定。任何幫助讚賞。
我得到的錯誤是:
Caused by: retrofit.converter.ConversionException: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 75
但是我努力理解如何使用GSON庫
你收到了什麼樣的錯誤?請問Logcat? – NasaGeek
基本上,關鍵線是:引起:retrofit.converter.ConversionException:com.google.gson.JsonSyntaxException:java.lang.IllegalStateException:期望的BEGIN_ARRAY,但是BEGIN_OBJECT在第1行75 – K20GH
好吧,所以我不是令人難以置信熟悉gson,但它似乎期待着一系列'Photos'而不是'List'。 – NasaGeek