json数据的转换

Posted helloWord程序猿们

tags:

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

一://json数组类型字符串取值
var jsonStr = \'[{"id":"01","open":false,"pId":"0","name":"A部门"},{"id":"01","open":false,"pId":"0","name":"A部门"},{"id":"011","open":false,"pId":"01","name":"A部门"},{"id":"03","open":false,"pId":"0","name":"A部门"},{"id":"04","open":false,"pId":"0","name":"A部门"}, {"id":"05","open":false,"pId":"0","name":"A部门"}, {"id":"06","open":false,"pId":"0","name":"A部门"}]\';
var jsonObj =  JSON.parse(jsonStr);//转换为json对象
for(var i=0;i<jsonObj.length;i++){
        alert(jsonObj[i].id);  //取json中的值
}
console.log(jsonObj)
var jsonStr1 = JSON.stringify(jsonObj)
console.log(jsonStr1+"jsonStr1")

二:

public static void main(String[] args) throws Exception {
List list=new ArrayList<>() ;
ArrayList<Object> alist=new ArrayList<>();
  Map<Object, List> map=new HashMap<Object, List>();
list.add("ss");
list.add("dd");
alist.add("hh");
alist.add("yy");
map.put("a", list);
map.put("b", alist);
String ss=JSON.toJSONString(map);

 

JSONObject jsonObject=JSON.parseObject(ss);

String hhString=jsonObject.getString("a");

 

JSONArray ssssArray=(JSONArray) JSONArray.parse(hhString);
System.out.println(ssssArray.get(0));

 



}

 

 三:

Map mapsMap=new HashMap<>();
mapsMap.put("1", 2);
mapsMap.put("2", 3);
Map<Object, Map> map=new HashMap<Object, Map>();

map.put("a", mapsMap);
map.put("b", mapsMap);
String ss=JSON.toJSONString(map);

 System.out.println(ss);

String hhString=jsonObject.getString("a");

System.out.println(hhString);

}

 

 


以上是关于json数据的转换的主要内容,如果未能解决你的问题,请参考以下文章

如何在android中将json数据加载到片段中

HTTP转换为null什么意思?

微信小程序json数据如何处理?

如何从片段中的 JSON 响应中的对象获取数据

如何在 Reactjs 中添加丰富的代码片段?

java中把json怎么转换成数组