gpt4 book ai didi

java - 在 java 中解析这个 JSON?

转载 作者:行者123 更新时间:2023-11-30 08:14:32 24 4
gpt4 key购买 nike

<分区>

我有这个 JSONObject,它作为来自第 3 方 API 的响应返回。

[
[
{
"msg": "hi",
"uuid": "fc8c5dd3-d46c-4945-894d-6160f830d815"
},
{
"msg": "hihe",
"uuid": "fc8c5dd3-d46c-4945-894d-6160f830d815"
}
],
14281343855179004,
14281349424008428
]

我该如何解析?

这是我得到的

[[{"msg":"hi","uuid":"fc8c5dd3-d46c-4945-894d-6160f830d815"},{"msg":"hihe","uuid":"fc8c5dd3-d46c-4945-894d-6160f830d815"}],14281343855179005,14281349424008427]

我的代码

  try {
JSONObject reader = new JSONObject(message.toString());

JSONObject sys = reader.getJSONObject("uuid");
String msg = sys.getString("msg");
System.out.println(msg);



} catch (JSONException e) {
e.printStackTrace();
}

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