JSON格式的转换
Posted 醉卧何处
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON格式的转换相关的知识,希望对你有一定的参考价值。
JSON对象是JavaScipt对象的自定义对象
1.字符串转化为JSON对象,可用“(”,“)” 拼接
也可以用$.parseJSON()进行转化
2.JSON.stringify函数的作用是将一个javascript对象,转换为JSON格式的字符串。
3.JSONObject json=JSONObject.fromObject(data); 转化为JSON对象
4.Hero hero = (Hero)JSONObject.toBean(json,Hero.
class
); z转化为Hero对象
5.JSONObject json=
new
JSONObject(); 创建Json对象
获取多数组的时候
String result =JSONSerializer.toJSON(heros).toString(); response.setContentType("text/html;charset=utf-8"); response.getWriter().print(result);
单个数据
Hero hero = new Hero(); hero.setName("盖伦"); hero.setHp(353); JSONObject json= new JSONObject(); json.put("hero", JSONObject.fromObject(hero)); response.setContentType("text/html;charset=utf-8"); response.getWriter().print(json);
以上是关于JSON格式的转换的主要内容,如果未能解决你的问题,请参考以下文章