java怎么把oracle数据生成json嵌套格式
1个回答
2017-06-28
展开全部
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class TestJson {
public static void main(String[] args) {
JSONObject jsonObj = new JSONObject();//创建json格式的数据
JSONArray jsonArr = new JSONArray();//json格式的数组
JSONObject jsonObjArr = new JSONObject();
try {
jsonObjArr.put("item1", "value1");
jsonObjArr.put("item2", "value2");
jsonArr.put(jsonObjArr);//将json格式的数据放到json格式的数组里
jsonObj.put("rows", jsonArr);//再将这个json格式的的数组放到最终的json对象中。
System.out.println(jsonObj.toString());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
最终程序生成的数据格式就如下:
{"rows":[{"item1":"value1","item2":"value2"}]}
import org.json.JSONException;
import org.json.JSONObject;
public class TestJson {
public static void main(String[] args) {
JSONObject jsonObj = new JSONObject();//创建json格式的数据
JSONArray jsonArr = new JSONArray();//json格式的数组
JSONObject jsonObjArr = new JSONObject();
try {
jsonObjArr.put("item1", "value1");
jsonObjArr.put("item2", "value2");
jsonArr.put(jsonObjArr);//将json格式的数据放到json格式的数组里
jsonObj.put("rows", jsonArr);//再将这个json格式的的数组放到最终的json对象中。
System.out.println(jsonObj.toString());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
最终程序生成的数据格式就如下:
{"rows":[{"item1":"value1","item2":"value2"}]}
TableDI
2024-07-18 广告
2024-07-18 广告
作为上海悉息信息科技有限公司的一员,我们专注于提供高效的数据处理解决方案。对于多个文件表格的合并需求,我们通常采用专业的数据整合技术,确保数据的准确性和一致性。通过精确匹配表格字段和格式,我们能够快速、准确地将多个表格合并成一个,为用户提供...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |