gpt4 book ai didi

java - 如何检查下面的 JSON 响应是否为空数组

转载 作者:行者123 更新时间:2023-12-01 20:09:35 25 4
gpt4 key购买 nike

这是我的 JSON 响应,我如何检查 android 中的空数组

[
{
"OrderDetails":[
{
"userName":"akhilm"
"acc_name":"akhil001"
}
],
"OrderAttributes":null
"OrderServices":[
{
"name":"aditi"
"id":78934
}
],
"Message":null
"Description":null
}
]

JSON 数据是动态的

最佳答案

try {
JSONObject json = new JSONObject(jsonString);

if(json.isNull("OrderAttributes")) {
//TODO: it is null
} else {
//TODO: it is not null
String orderAttributes = json.getString("OrderAttributes");
}
} catch (JSONException e) {
e.printStackTrace();
}

关于java - 如何检查下面的 JSON 响应是否为空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46882632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com