"只能迭代java.lang.Iterable"的数组或实例。使用org.json时出错

时间:2018-04-15 15:16:03

标签: java arrays json org.json

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个小时内完成。

0 个答案:

没有答案