gpt4 book ai didi

java - Android 的 JSON 解析, boolean 值问题

转载 作者:行者123 更新时间:2023-12-01 15:56:19 26 4
gpt4 key购买 nike

我正在尝试进行 Android 开发,但当我尝试解析来自 API 的一些 JSON 时,我似乎无法传递此错误:

org.json.JSONException: Value true at 0 of type java.lang.Boolean cannot be converted to JSONObject

那么,它不能处理“true”?这看起来很愚蠢。这是响应的第一部分,它失败了:

[true,{"total":84,"results": ...

这是我尝试进行解析的方式:

new JSONArray(json);

最佳答案

嗨菲尔,这是一个例子......

int mytotal;
if (result instanceof JSONArray) {
JSONArray jsonArray = (JSONArray) result;
JSONObject jo = jsonArray.getJSONObject(0);
mytotal = jo.getInt("total");
}

关于java - Android 的 JSON 解析, boolean 值问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4982468/

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