使用java生成Json数据

  1. import org.json.JSONArray;  
  2.   
  3. import org.json.JSONException;  
  4.   
  5. import org.json.JSONObject;  
  6.   
  7.    
  8.   
  9. public class TestJson {  
  10.   
  11.    public static void main(String[] args) {  
  12.   
  13.       JSONObject jsonObj = new JSONObject();//创建json格式的数据  
  14.   
  15.       JSONArray jsonArr = new JSONArray();//json格式的数组  
  16.   
  17.       JSONObject jsonObjArr = new JSONObject();  
  18.   
  19.       try {  
  20.   
  21.          jsonObjArr.put("item1""value1");  
  22.   
  23.          jsonObjArr.put("item2""value2");  
  24.   
  25.          jsonArr.put(jsonObjArr);//将json格式的数据放到json格式的数组里  
  26.   
  27.          jsonObj.put("rows", jsonArr);//再将这个json格式的的数组放到最终的json对象中。  
  28.   
  29.          System.out.println(jsonObj.toString());  
  30.   
  31.       } catch (JSONException e) {  
  32.   
  33.          // TODO Auto-generated catch block  
  34.   
  35.          e.printStackTrace();  
  36.   
  37.       }  
  38.   
  39.    }  
  40.   
  41. }  
  42.   
  43.    
  44.   
  45. 最终程序生成的数据格式就如下:  
  46.   
  47. {"rows":[{"item1":"value1","item2":"value2"}]}

  原文:http://blog.csdn.net/tarena_xhf/article/details/7405636


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值