gpt4 book ai didi

java - 如何从 Java 中的 JSON 字符串中检索值数组中的值

转载 作者:行者123 更新时间:2023-12-02 07:50:52 25 4
gpt4 key购买 nike

鉴于返回以下 JSON 字符串:

String s = "{"errorCode":0,"result":"Processed","trips":[{"tripDestination":"Vancouver","tripStartTime":"07:41"},{"tripDestination":"Montreal","tripStartTime":"08:04"}]}";

我可以轻松获得错误代码和结果,例如:

JSONObject jObject;
jObject = new JSONObject(s);

String result = jObject.getString("result");
Log.v("JSON Result", result);

但是我知道 tripDestiation 值是 JSON 字符串中的值数组吗?

最佳答案

jObject.getJSONArray("trips").getJSONObject(0).getString("tripDestination");

关于java - 如何从 Java 中的 JSON 字符串中检索值数组中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10246394/

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