英文:
Check if jsonArray is not [[]]
问题
我有这个奇怪的 JSON 数组
[
[
]
]
如何检查这个 JSON 数组是否是这种形式的?
我尝试检查 jsonArray.length() > 0
,但对于 [[]]
这个情况,这个条件返回 true
,但我希望是 false
。
- 有什么解决办法?
英文:
I have this weird json Array
[
[
]
]
How can I check whether this json arary is in this form or not?
I tried to check whether jsonArray.length() > 0
but for [[]]
this is giving me true
but I expect to be false
.
- How can I fix?
答案1
得分: 3
jsonArray的大小将为1,因为它内部有一个空数组。因此,您可以使用此条件来检查嵌套的空数组 [ [ ] ]。
(jsonArray.size() == 1 && jsonArray[0].size() == 0)
英文:
jsonArray will have a size of one as it has an empty array inside it. So, you can use this condition to check for nested empty array [ [ ] ].
(jsonArray.size()==1 && jsonArray[0].size()==0)
答案2
得分: 0
尝试这个:(jsonArray != null && jsonArray.length() == 1 && jsonArray.optJSONArray(0) != null && jsonArray.getJSONArray(0).length() == 0)
英文:
try this: (jsonArray != null && jsonArray.length() == 1 && jsonArray.optJSONArray(0) != null && jsonArray.getJSONArray(0).length() == 0)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论