如何使用 gson 解析 Freebase 主题 api 响应
是否可以使用 google gson 库解析 Freebase 实验 TOPIC Api 返回的 json 响应? 我使用 gson 从多个 freebase mqlread 响应中解析 json 响应。 的响应
我现在被困在尝试解析 json 消息,例如来自此http://api.freebase.com/api/experimental/topic/basic?id=/en/sgt_peppers_lonely_hearts_club_band
或来自此
或此
是否可以用一个gson解析所有三个repsones“代码集”
is it possible to parse the json response returned by the Freebase experimental TOPIC Api with the google gson library?
i have used gson to parse the json repsone from multiple freebase mqlread responses.
i am now stuck attempting to parse json messages like the response from this
http://api.freebase.com/api/experimental/topic/basic?id=/en/sgt_peppers_lonely_hearts_club_band
or from this
or this
is it possible to parse all three repsones with one gson "code set"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我没有尝试这样做,但没有理由它不起作用。您在使用过程中是否遇到任何错误?如果您粘贴代码和错误,我也许可以为您提供更多帮助。
I have not tried to do this but there is no reason why it wouldn't work. Are you getting any errors when you use it ? If you paste your code and errors I might be able to help you more.
看看这个问题的答案:
在 Android 中解析对 Java 对象的 JSON 响应
相同的方法应该适用于 Topic API。
Take a look at the answer to this question:
Stuck on parsing a JSON response to a Java Object in Android
The same approach should work for the Topic API.
我放弃了GSON,转而使用JACKSON
它非常适合提取感兴趣的数据并忽略其他一切。
感谢您花时间回答我的问题
I gave up on GSON and switched to JACKSON
it works perfectly for extracting the data of interest and ignoring everything else.
thanks for all the time spent in responding to my question