json对象转换

Posted 学海无涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json对象转换相关的知识,希望对你有一定的参考价值。

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对象转换的主要内容,如果未能解决你的问题,请参考以下文章

二维数组和json对象的转换

将 JSON 对象转换为 Buffer 并将 Buffer 转换为 JSON 对象

json字符串转换成json对象,json对象转换成字符串,值转换成字符串,字符串转成值

对象转换json对象中存在Date,json转换对象时出现转换异常情况

对象转换json对象中存在Date,json转换对象时出现转换异常情况

android 怎么将json转换成对象