Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDavid Sanchez
1,511 PointsIm not sure what I'm doing wrong
In the code challenge the instruction are the folloging: Finally, write a 'for' loop that loops through 'jsonBooks'. In each step of the loop, use 'getJSONObject(int index)' to get a JSONObject from the array. Then use the 'Log.i()' method (with "CodeChallenge" as the tag) to write the book title, a comma, a space, and the number of pages. Ex. output: 'Book title 1, 300'.
I'm writting the following:
String name = jsonData.getString("name");
String publisher = jsonData.getString("publisher");
String language = jsonData.getString("language");
//Log.v(TAG,status);
JSONArray jsonBooks = jsonData.getJSONArray("books");
for(int i = 0; i < jsonBooks.length(); i++){
JSONObject jsonPost = jsonBooks.getJSONObject(i);
String title = jsonPost.getString("title");
String pages = jsonPost.getString("pages");
Log.i("CodeChallenge", "Book title, " + title + pages);}
but I dont know why im getting it wrong.
1 Answer
David Sanchez
1,511 Pointsnever mind the answer was:
String pages = jsonPost.getString("pages");
Log.i("CodeChallenge", title + ", " + pages);}
but thanks anyway. :)