次のような HashMap があります。
Map<String, String> myMap = new HashMap<String,String>();
myMap.put("apple","mac");
JSONArray listOfEntities = new JSONArray();
listOfEntities.put(myMap);
質問: listOfEntities から "apple" を取得する必要があります。どうやってするの?ご協力いただきありがとうございます。