JSONObject 和 JSONArray例子

前端之家收集整理的这篇文章主要介绍了JSONObject 和 JSONArray例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

JSONObject obj = new JSONObject();

obj.put("id",lab.getLabId());
obj.put("name",lab.getLabName());
obj.put("type",lab.getLabType());
obj.put("desc",lab.getLabDesc());

JSONArray array = new JSONArray();
array.put(obj);

JSONObject ob = new JSONObject();
ob.put("lab",array);

输出{"lab":[{"id":10,"desc":"for computer science","name":"LAB-CMP-1","type":1}]}

原文链接:https://www.f2er.com/json/290498.html

猜你在找的Json相关文章