gpt4 book ai didi

java - 将字符串转换为 json 对象并获取一些数据

转载 作者:行者123 更新时间:2023-12-02 05:53:32 25 4
gpt4 key购买 nike

我有一个名为“response”的字符串,如下所示:

{"test": {
"id": 179512,
"name": "Test",
"IconId": 606,
"revisionDate": 139844341200,
"Level": 20
}}

我想将 id 值保存到变量中。我该怎么做?

JSONObject jsonObj = new JSONObject(response);  
jsonObj.getInt("id");

这不起作用。

最佳答案

试试这个..

JSONObject jsonObj = new JSONObject(response);  
JSONObject test_jsonObj = jsonObj.getJSONObject("test");
int id = test_jsonObj.getInt("id");

关于java - 将字符串转换为 json 对象并获取一些数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23322818/

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