Json looks like:
{ "cover":"blabla.jpg", "content":[ { "article":"article_text", "document":"document_text" } ] } I can get the value of the "cover" field easily
JSONObject json = new JsonObject(jsonStr); //jsonStr - мой json в видео строки json.get("cover"); But how to get to the value of "article"?
.get(0)returns a string, it does not have a method.getString()- Artyom Chebotaryov