RESTlet教程应用程序不返回Java对象(仅限JSON)

时间:2010-11-15 09:05:46

标签: android google-app-engine restlet-2.0

我一直在寻找Restlet official tutorial提供的源代码。

我正在尝试使用Android应用程序来访问Restlet服务器,因为我只获得了JSON响应,而不是Java对象。我尝试使用所有库和扩展,没有任何作用。当我点击教程网址(http://restlet-example-serialization.appspot.com/contacts/123)时,我得到了所需的回复。有任何想法吗?顺便说一句,我只是在示例中使用服务器(GAE),而不是GWT前端。

1 个答案:

答案 0 :(得分:-1)

使用GSOn将json转换为java对象。您可以从谷歌获取GSON代码:

http://code.google.com/p/google-gson/

其他方式:

Response res = client.handle(req); 
    ObjectRepresentation<Item> obj = new ObjectRepresentation<Item>(res.getEntity()); 
    Item item = obj.getObject();