码迷,mamicode.com
首页 > Web开发 > 详细

json对象转换

时间:2017-07-31 13:25:37      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:int   module   ecif   string转换   input   取数   tostring   for   spec   

String modules =...; //json格式的String对象
//String对象转换为JSON格式数组
JSONArray moduleArr=JSONObject.parseArray(modules);
for(int i=0;i<moduleArr.size();i++){
//获取数组中一个json对象
JSONObject moduleObj=moduleArr.getJSONObject(i);
//获取json对象的一个属性
String attrConditions=moduleObj.getString("attrConditions")
//如果属性又是一个json数组,则获取后循环处理
JSONArray specific=moduleObj.getJSONArray("specific");
JSONObject inputJson = new JSONObject();
//json对象转换为json格式的String对象
inputJson.toString();
//string转换为json对象
JSONObject json = JSONObject.parseObject(inputJson);

json对象转换

标签:int   module   ecif   string转换   input   取数   tostring   for   spec   

原文地址:http://www.cnblogs.com/jing1617/p/7262468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!