2014-02-19 132 views
4

我有以下的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庫

+0

你收到了什麼樣的錯誤?請問Logcat? – NasaGeek

+0

基本上,關鍵線是:引起:retrofit.converter.ConversionException:com.google.gson.JsonSyntaxException:java.lang.IllegalStateException:期望的BEGIN_ARRAY,但是BEGIN_OBJECT在第1行75 – K20GH

+0

好吧,所以我不是令人難以置信熟悉gson,但它似乎期待着一系列'Photos'而不是'List'。 – NasaGeek

回答

5

您的JSON是無效的。

GSON是collection:後等待BEGIN_ARRAY "["因爲你PhotosResponse類中定義照片List<Photo>的陣列,但發現了一個BEGIN_OBJECT "{",它應該是

{ 
    "collection_name": "My First Collection", 
    "username": "Alias", 
    "collection": [ 
     { 
      "photo_id": 1, 
      "owner": "Some Owner", 
      "title": "Lightening McQueen", 
      "url": "http://hesp.suroot.com/elliot/muzei/public/images/randomhash1.jpg" 
     }, 
     { 
      "photo_id": 2, 
      "owner": "Awesome Painter", 
      "title": "Orange Plane", 
      "url": "http://hesp.suroot.com/elliot/muzei/public/images/randomhash2.jpg" 
     } 
    ] 
} 

也許你得到的JSON從一個不正確的json_encode() PHP數組與關鍵,你應該編碼JSON從PHP沒有鍵,只有數組值(PHP Array to JSON Array using json_encode()

+0

對,看起來應該是'collection:['。但是,我仍然很好奇他的代碼是否可以工作。 – user1923613

+0

@ user1923613你有什麼好奇的? –

+1

@JoshPinter,我想如何改造GSON可以直接獲得「集合」鍵值對,而不會被「colllection_name」和「username」打擾。我遇到了同樣的錯誤。我必須編寫自己的GSON適配器才能正確使用,類似於[鏈接](http://sachinpatil.com/blog/2012/07/03/gson/) – Liangjun