java怎么把oracle数据生成json嵌套格式
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"}]}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询