Я использую Google Books Api
для отображения списка книг, но когда я пытаюсь получить URL-адрес миниатюры из imageLinks
JSONObject
, тогда JSONException
говорит, что для imageLinks
нет значения, хотя значениесуществует в этом объекте.
Я пробовал методы типа JSONObject.isNull()
или optString()
вместо getString()
, но он все равно не дает мне никакого значения.
Вот URL, который яЯ пытаюсь получить данные от: https://www.googleapis.com/books/v1/volumes?q=android
Вот код:
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener < JSONObject > () {
@Override
public void onResponse(JSONObject response) {
if (response != null) {
try {
JSONArray jsonItemsArray = response.getJSONArray("items");
for (int i = 0; i < jsonItemsArray.length(); i++) {
String thumbnailUrl = "";
String title = "";
JSONObject item = jsonItemsArray.getJSONObject(i);
JSONObject volumeInfo = item.getJSONObject("volumeInfo");
JSONObject thumbnailUrlObject = volumeInfo.getJSONObject("imageLinks");
if (!thumbnailUrlObject.isNull("thumbnail")) {
thumbnailUrl = thumbnailUrlObject.getString("thumbnail");
}
title = volumeInfo.getString("title");
bookList.add(new Book(title, thumbnailUrl));
booksAdapter.notifyDataSetChanged();
}
} catch (JSONException e) {
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
error.printStackTrace();
}
});
И это часть ответа JSON:
"kind": "books#volumes",
"totalItems": 500,
"items": [
{
"kind": "books#volume",
"id": "JUVjAgAAQBAJ",
"etag": "kbnCYPNPKq4",
"selfLink": "https://www.googleapis.com/books/v1/volumes/JUVjAgAAQBAJ",
"volumeInfo": {
"title": "Android. Podstawy tworzenia aplikacji",
"authors": [
"Andrzej Stasiewicz"
],
"publisher": "Helion",
"publishedDate": "2013-11-10",
"description": "Na szczęście dostępna jest już książka Android.",
"industryIdentifiers": [
{
"type": "ISBN_13",
"identifier": "9788324688418"
},
{
"type": "ISBN_10",
"identifier": "8324688412"
}
],
"readingModes": {
"text": true,
"image": true
},
"pageCount": 216,
"printType": "BOOK",
"categories": [
"Computers"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "1.4.4.0.preview.3",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=JUVjAgAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=JUVjAgAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
}
ИИнтересно, почему volumeInfo.getJSONObject("imageLinks")
дает мне JSONException
без значения для, хотя imageLinks
имеет значение.