java实现二维数组转json的方法示例
本文实例讲述了java实现二维数组转json的方法。分享给大家供大家参考,具体如下:
packageTsets;
publicclasserweiTojson{
publicstaticvoidmain(String[]args){
String[][]blogList={
{"2008/07/07","NetBeansNewandCool","TimBoudreau"},
{"2008/07/07","NetBeansMobility","AdaLi"},
{"2008/07/07","CreatingWeb2.0RichInternetApplications","MichaelLi"},
{"2008/07/08","AJAXandJSF","AdaLi"},
{"2008/07/09","RubyonRailsintheEnterprise","LiangYe"},
{"2008/07/09","BeansBindingandtheSwingApplicationFramework","JoeyShen"}
};
StringBuffersb=newStringBuffer();
booleanfirst=true;
sb.append("[");
for(inti=0;i
运行结果:
[{postdate:'2008/07/07',title:'NetBeansNewandCool',author:'TimBoudreau'},{postdate:'2008/07/07',title:'NetBeansMobility',author:'AdaLi'},{postdate:'2008/07/07',title:'CreatingWeb2.0RichInternetApplications',author:'MichaelLi'},{postdate:'2008/07/08',title:'AJAXandJSF',author:'AdaLi'},{postdate:'2008/07/09',title:'RubyonRailsintheEnterprise',author:'LiangYe'},{postdate:'2008/07/09',title:'BeansBindingandtheSwingApplicationFramework',author:'JoeyShen'}]
PS:关于json操作,这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat
在线XML/JSON互相转换工具: