新网创想网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

利用java怎么将二维数组转换为json

这篇文章将为大家详细讲解有关利用java怎么将二维数组转换为json,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

成都创新互联-专业网站定制、快速模板网站建设、高性价比武陵源网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式武陵源网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖武陵源地区。费用合理售后完善,10年实体公司更值得信赖。

具体方法如下:

package Tsets;
public class erweiTojson {
 public static void main(String[] args) {
  String[][] blogList = {
   {"2008/07/07", "NetBeans New and Cool", "Tim Boudreau"},
   {"2008/07/07", "NetBeans Mobility", "Ada Li"},
   {"2008/07/07", "Creating Web 2.0 Rich Internet Applications", "Michael Li"},
   {"2008/07/08", "AJAX and JSF", "Ada Li"},
   {"2008/07/09", "Ruby on Rails in the Enterprise", "Liang Ye"},
   {"2008/07/09", "Beans Binding and the Swing Application Framework", "Joey Shen"}
  };
  StringBuffer sb = new StringBuffer();
  boolean first = true;
  sb.append("[");
  for (int i = 0; i < blogList.length; i++) {
   String[] blogItem = blogList[i];
   if (!first) {
    sb.append(",");
   }
   sb.append("{");
   sb.append("postdate: '" + blogItem[0] + "', ");
   sb.append("title: '" + blogItem[1] + "', ");
   sb.append("author: '" + blogItem[2] + "' ");
   sb.append("}");
   first = false;
  }
  sb.append("]");
  System.out.println(sb.toString());
 }
}

运行结果:

代码如下:
[{postdate: '2008/07/07', title: 'NetBeans New and Cool', author: 'Tim Boudreau' },{postdate: '2008/07/07', title: 'NetBeans Mobility', author: 'Ada Li' },{postdate: '2008/07/07', title: 'Creating Web 2.0 Rich Internet Applications', author: 'Michael Li' },{postdate: '2008/07/08', title: 'AJAX and JSF', author: 'Ada Li' },{postdate: '2008/07/09', title: 'Ruby on Rails in the Enterprise', author: 'Liang Ye' },{postdate: '2008/07/09', title: 'Beans Binding and the Swing Application Framework', author: 'Joey Shen' }]

关于利用java怎么将二维数组转换为json就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


网站栏目:利用java怎么将二维数组转换为json
URL标题:http://www.wjwzjz.com/article/ppecsc.html
在线咨询
服务热线
服务热线:028-86922220
TOP