英文:
Check if Json Array is empty or contains one Json Object
问题
这是我的代码片段:
...
JSONObject jsonObject = new JSONObject(response.body());
JSONArray jsonArray = jsonObject.getJSONArray("data");
...
英文:
How can I check whether
{
"data": [
{
"latitude": 12,
"longitude": 13
}
]
}
contains one object, as the previous example, or it is empty, as the following example:
{
"data": [
[]
]
}
This is my snippet:
...
JSONObject jsonObject = new JSONObject(response.body());
JSONArray jsonArray = jsonObject.getJSONArray("data");
...
答案1
得分: 1
你可以这样检查数据数组的长度:
if (jsonArray.length() > 0) { //这意味着数据属性中有记录 }
英文:
You can check the data array length like this:
if(jsonArray.length() > 0) { //it means that there is a record in data attr }
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论