gpt4 book ai didi

java - 如何使用 GSON 从 json 树获取 json 值

转载 作者:行者123 更新时间:2023-11-30 07:48:23 24 4
gpt4 key购买 nike

我有一个如下所示的 json

{
"apiVersion": "v1",
"metadata": {
"status": {
"statusCode": 0
},
},
"stuff": [
{
"name": {
"text": "red"
},
"properties": [
{
"attributes": {
"shade": "dark"
},
"component": {
"id": "BA1",
}
"type": "Color"
}
]
},
{
"name": {
"text": "Toyota Camry"
},
"properties": [
{
"attributes": {},
"component": {
"id": "MS",
},
"type": "Vehicle"
}
]
},
]
}

我使用 GSON 来解析结果,如下所示:

Gson gson = new Gson();
JsonObject json = (JsonObject) gson.fromJson(in, JsonObject.class);
System.out.println(json.get("apiVersion").getAsString());

我可以获取apiVersion,但不知道如何获取 json 树内的元素。例如,类型...如果我想输出所有不同的类型......在本例中颜色和车辆

最佳答案

我一定在这里遗漏了一些东西,但是为什么不能嵌套对 getJsonObject 的调用?例如,获取状态码:

  System.out.println(json.getAsJsonObject("metadata")
.getAsJsonObject("status")
.get("statusCode").getAsInt());

关于java - 如何使用 GSON 从 json 树获取 json 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33597385/

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