gpt4 book ai didi

android - JSONArray 在解析时返回 null

转载 作者:行者123 更新时间:2023-11-29 18:04:32 26 4
gpt4 key购买 nike

我想解析这个 JSON 字符串:

{
lhs: "1 British pound",
rhs: "1.6152 U.S. dollars",
error: "",
icc: true
}

但是 JSONArray 返回空值。

最佳答案

当前的 json 字符串包含一个 jsonObject 而不是 JsonArray 所以将其解析为:

// Convert String to Json Object
JSONObject jsonObject = new JSONObject("Pass_Your_Json_String");

// get lhs
String str_lhs=jsonObject.getString("lhs");

// get rhs
String str_rhs=jsonObject.getString("rhs");

//.....

关于android - JSONArray 在解析时返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14097381/

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