gpt4 book ai didi

android - Libgdx 读取 json 数组值

转载 作者:行者123 更新时间:2023-11-30 01:07:28 25 4
gpt4 key购买 nike

我有一个 json 响应,我试图从中读取值但失败了。以下是回复

{ 
"ID": 89,
"Ans": ["24", "12", "1", "18" ],
"Que": "How Many hours are in a day?"
}

我可以使用以下代码成功读取值 ID 和 Que,但不能读取 Ans 数组。另外,我如何访问 Ans 数组中的各个值?谢谢

JsonValue json = new JsonReader().parse(response);
String _id = json.getString("ID");
String que = json.getString("Que");

//not working
//String ans = json.getString("Ans");
//Json json1 = new Json();
//ArrayList<JsonValue> list = json1.fromJson(app.loadingScreen,ans);

最佳答案

我通过使用管理

   String[] answers = ans.asStringArray();
Gdx.app.log("App", "? : " + answers[0]);

关于android - Libgdx 读取 json 数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38739506/

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