JSONArray historyJson = new JSONArray(nameHistoryResponse);
for (Object o : historyJson) {
index++;
JSONObject jsonObj = (JSONObject) o;
String name = jsonObj.getString("name");
if (name.equalsIgnoreCase(data[2].toString())) {
foundIndex = index;
}
}
我在第二行继续收到错误,说historyJson必须是" java.lang.Iterable"但根据我的代码,它是。我完全难以理解这将意味着世界如果有人对此有所修正,因为项目需要在接下来的2个小时内完成。