Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
编辑:原来我只是混淆了 JSONObject 和 JSONArray 是什么。我正在使用 JSONObject,但一直在尝试使用适用于 JSONArray 的代码。
因为你没有初始化 ArrayList 替换
ArrayList<Books> bookData = null;
和
ArrayList<Books> bookData = new ArrayList<Books>();
希望这有效。