java解析json数组
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
ava解析json数组:需要添加一个jar包,自己搜索即可
import
org.json.JSONArray;
import
org.json.JSONException;
import
org.json.JSONObject;
public
static
void
main(String[] args)
throws
JSONException {
String sJson =
"[{'gwcxxid':'1','spsl':'2'},{'gwcxxid':'1','spsl':'2'},{'gwcxxid':'3','spsl':'4'}]"
;
JSONArray jsonArray =
new
JSONArray(sJson);
int
iSize = jsonArray.length();
System.out.println(
"Size:"
+ iSize);
for
(
int
i =
0
; i < iSize; i++) {
JSONObject jsonObj = jsonArray.getJSONObject(i);
System.out.println(
"["
+ i +
"]gwcxxid="
+ jsonObj.get(
"gwcxxid"
));
System.out.println(
"["
+ i +
"]spsl="
+ jsonObj.get(
"spsl"
));
System.out.println();
}
}
|
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献9条内容
所有评论(0)