gpt4 book ai didi

安卓 JSON 对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:06:47 26 4
gpt4 key购买 nike

我有这样的 JSON 格式

{"response":{"status":true,"result":"user_exists"}}

现在我正在尝试检索 Status 值以执行一些逻辑

JSONObject jData = new JSONObject(data);
JSONArray response = jData.getJSONArray("response");

但我收到以下错误

org.json.JSONException: Value {"result":"user_exists","status":true} at response of type org.json.JSONObject cannot be converted to JSONArray

如何从内部和对象中检索对象?

最佳答案

response 是一个 JSONObject,而不是 JSONArray。数组对象被这些 [] 括号包围,对象与普通的 {} 包围。 (有关更多格式信息,请参阅 json.org)

改变

JSONArray response = jData.getJSONArray("response");

JSONObject response = jData.getJSONObject("response");

关于安卓 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8294062/

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