我正在使用org.json
动态创建JSON这是我目前得到的输出
{
"item": {
"T1": [
{
"name": "101",
"T2": {
"leaf": [
{
"jsonkey": "jsonval"
}
]
}
}
]
}
}
我需要输出格式为
(删除了额外的T2 JSONObject)
{
"item": {
"T1": [
{
"name": "101",
"leaf": [
{
"jsonkey": "jsonval"
}
]
}
]
}
}
这是我的整个计划
public static void main(String[] args) throws JSONException {
Map<String,LinkedList<JSONObject>> vendorOrdersMap = new LinkedHashMap<String,LinkedList<JSONObject>>();
JSONObject jsonobj = new JSONObject();
jsonobj.put("jsonkey", "jsonval");
LinkedList<JSONObject> listjson = new LinkedList<JSONObject>();
listjson.add(jsonobj);
vendorOrdersMap.put("101", listjson);
JSONObject sai = new JSONObject();
JSONArray T1Array = new JSONArray();
for (Map.Entry<String, LinkedList<JSONObject>> entry : vendorOrdersMap.entrySet())
{
String key = entry.getKey();
LinkedList<JSONObject> t1ChildList = entry.getValue();
JSONArray jsonarray = new JSONArray();
for(JSONObject t2ColumnData : t1ChildList)
{
jsonarray.put(t2ColumnData);
JSONObject lemon = new JSONObject().put("leaf", jsonarray);
JSONObject soft = new JSONObject().put("name", key).put("T2", lemon);
T1Array.put(soft);
}
JSONObject softDrink = new JSONObject().put("T1", T1Array);
sai.put("item", softDrink);
}
System.out.println(sai);
}
如果我删除
JSONObject soft = new JSONObject().put("name", key).put("T2", lemon);
我无法追加数据。
答案 0 :(得分:1)
如果将最里面的for
- 循环更改为类似
jsonarray.put(t2ColumnData);
JSONObject soft = new JSONObject().put("name", key).put("leaf", jsonarray);
T1Array.put(soft);
因为您希望保留name
部分,并且仅将T2
部分替换为其子级。