I\'m trying to extract the keys from a JSON Object. The JSON object, in this case, is obtained by making an API call to a social networking site called SkyRock and
Iterator listKEY = jsonOject.keys(); do { String newKEY = listKEY.next().toString(); }while (listKEY.hasNext());