gpt4 book ai didi

java - 如何访问 JSP 中的 JSONArray 元素

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

我的 JSONArray 是

[
{"id":1,
"programs_idprograms":3,
"description":"course description",
"idCourse":"course title"
},
{"id":2,
"programs_idprograms":3,
"description":"course description2",
"idCourse":"course title2"
}
]

存储在一个名为bean2的字符串中

最佳答案

JSONArray array = new JSONArray(bean2);
for(int i=0;i<array.length();i++){
JSONObject object = array.getJSONObject(i);
int id = object.getInt("id");
int programs_idprograms = object.getInt("programs_idprograms");
String description = object.getString("description");
String idCourse = object.getString("idCourse");
}

关于java - 如何访问 JSP 中的 JSONArray 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27766835/

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