I'm parsing this document: http://pastebin.com/M3Gsbf1t as you can see it's kind of big. This document was generated by Youtube Data API v3. I want to get all "title" elements and display them. My code:
Object obj = parser.parse(str); // str contains the JSON code
JSONObject jsonObject = (JSONObject) obj;
JSONArray msg = (JSONArray) jsonObject.get("title");
Iterator iterator = msg.iterator();
while (iterator.hasNext()) {
System.out.println(iterator.next());
}
but it returns "NullPointerException". If I replace the "title" with the "items" it works fine but it returns me a lot of informations that I don't need. I'm using the JSON.simple library.
Thanks for help :)
title
is not at the root of the JSON. You need to traverse the JSON object tree to get it. Also, where istitle
aJSONArray
? – Sotirios Delimanolis Nov 25 '13 at 21:49