我是这里的新手,我正在尝试通过ISBN从Google API中提取标题和作者。
代码如下:
try {
Document docKb = Jsoup.connect("https://www.googleapis.com/books/v1/volumes?q=isbn:0735619670").ignoreContentType(true).get();
String json = docKb.body().text();
Gson gson = new Gson();
//new Gson().toJson(new HashMap(map));
Map<String, Object> asMap = gson.fromJson(json, Map.class);
List<Map<String, Object>> items = (List) asMap.get("items");
// Map<String, Object> e = (Map) error.get("error")
for (Map<String, Object> item : items) {
if (item.containsKey("title") && item.containsKey("authors")) {
String title = (String) item.get("title");
System.out.println("if Título: " + title);
} else {
System.out.println("Título: " + item.get("title") + "\n");
System.out.println("Autor: " + item.get("authors"));
}
}
System.out.println("items: "+ items );
}catch(IOException e){
e.printStackTrace();
}
这没有用...标题和作者的值均为空,但在“项目”列表中,它已从API中刮除了所有内容。
答案 0 :(得分:0)
这是一个简单的JSON解析错误。您没有给gson正确的课程。简而言之,该JSON不是Map
。相反,它是一个对象,其中包含:
String kind;
int totalItems;
Object items;
下面,我提供了正确解析此JSON所需的完整代码(假设您能够正确获取JSON字符串。
class ClassWhatever {
public static void main(String[] args) {
String url = "https://www.googleapis.com/books/v1/volumes?q=isbn:0735619670";
// Assuming that you do in fact have the JSON string...
String json = "the correct json";
Container fullJsonObject = new Gson().fromJson(json, Container.class);
for (Item i : fullJsonObject.items) {
System.out.println(i.volumeInfo.authors[0]);
}
}
private class Container {
String kind;
int totalItems;
Item[] items;
}
private class Item {
String kind;
String id;
String etag;
///blah
VolumeInfo volumeInfo;
String publisher;
///etc.
}
private class VolumeInfo {
String title;
String[] authors;
}
}
输出:
Steve McConnell
Steve McConnell
注意:
您只需要添加所需的字段。例如,如果您不需要String kind
,只需将其放在Container
类中即可。为了简洁起见,我遗漏了许多字段,但是如果需要,当然可以将它们放进去。
此外,我选择使用数组而不是列表。只要您正确设置代码格式,它们就可以完全互换。