我的应用程序正在尝试连接到 Salesforce API 并下拉其中存在的所有联系人。响应 json 对象有一个名为“totalSize”的键,它表示 33231 条记录。当我尝试以 JSONArray 的形式访问记录时,我的 JSONArray 仅包含 2000 条记录。jsonobject 可能在某处被截断。你能帮忙吗?以下是我的代码。
JSONObject asJSONObject = new JSONObject(new JSONTokener(result));
int totalRecordsSize = Integer.parseInt(asJSONObject.getString("totalSize"));
System.out.println("JSON_RESULT_SIZE : "+totalRecordsSize);
JSONArray array = (JSONArray)asJSONObject.get("records");
int count = array.length();
System.out.println("JSON_ARRAY_SIZE : "+count);
谢谢