gpt4 book ai didi

java - 如何将 JSON URL 中的字符串结果拆分为单个 java 对象

转载 作者:行者123 更新时间:2023-12-01 04:17:41 26 4
gpt4 key购买 nike

我编写了返回 JSON url 数据的代码。数据存储为字符串,这里是输出示例;

{

"status": "success",

"records": [

{
"timestamp": 1381312251599,
"deviceId": "288",
"temperature": 17
},

{
"timestamp": 1381312281599,
"deviceId": "288",
"temperature": 17
},

{
"timestamp": 1381312311599,
"deviceId": "288",
"temperature": 17
}
]
}

这是用于获取此信息的代码示例;

String jsonString = callURL("http://localhost:8000/eem/api/v1/metrics/temperature/288");
System.out.println(jsonString);

我需要帮助的是创建一个状态字段,然后创建一个记录数组,其中将保存时间戳、DeviceId、温度和这些值。

我尝试过查看 GSON,但我无法理解它

如果有人能提供任何帮助,那就太好了,谢谢

最佳答案

复制、粘贴并运行:

package stackoverflow.questions;

import java.util.List;

import com.google.gson.Gson;

public class Question {

class Record {
Long timestamp;
String deviceId;
Long temperature;
}

class Container {
List<Record> records;
}

public static void main(String[] args) {
String json = "{ \"status\": \"success\", \"records\": [{\"timestamp\": 1381222871868,\"deviceId\": \"288\",\"temperature\": 17 },{\"timestamp\": 1381222901868,\"deviceId\": \"288\",\"temperature\": 17 },{\"timestamp\": 1381222931868,\"deviceId\": \"288\",\"temperature\": 17 } ]} ";

Gson g = new Gson();
Container c = g.fromJson(json, Container.class);
for (Record r : c.records)
System.out.println(r);

}
}

关于java - 如何将 JSON URL 中的字符串结果拆分为单个 java 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19270615/

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