[描述]
1.使用Java
2.使用org.json.JSONArray和org.json.JSONObject
[问题]
我调用JSONArray的remove()
方法时,编译我的项目时总是出现“找不到符号:方法remove(int)”,任何帮助为了这?
这是一个类似的问题:How to remove JSONArray element using Java
但答案似乎不正确,因为这只会删除内部 JSONObject 的键值对,而不是整个 insinde JSONObject。
示例代码:
JSONArray test_arr = new JSONArray("[{'id':'1', 'name': 'name1'},{'id':'2', 'name':'name2'}]");
test_arr.remove(1); // here will cause the "cannot find symbol" error.
提前感谢您的帮助。