I\'ve got JSON file, which I want to parse. The JSON file (\"myfile\") has format as follows:
{ \"LanguageLevels\": { \"1\": \"Początkujący\",
JSONArray jsonChildArray = (JSONArray) jsonChildArray.get("LanguageLevels"); JSONObject secObject = (JSONObject) jsonChildArray.get(1);
I think this should work, but i do not have the possibility to test it at the moment..