我有一个关于JSONA内JSONArray合并的问题。下面是我的JSONObject的样子:
{
"name":"sample.bin.png",
"coords":{
"1":{"x":[ 974, 975],"y":[154, 155},
"3":{"x":[124, 125],"y":[529]},
"8":{"x":[2048, 2049],"y":[548, 560, 561, 562, 563, 564 ]}
}
}
现在我有了想要合并的那些JSONObjects的键(在coords
内)。我想将x
和y
分别合并到一个JSONObject中这里是我的代码:
String[] tokens = request().body().asFormUrlEncoded().get("coords")[0].split(","); //here i recieve the String Array Keys of the coords i want to merge
if (!image.equals("")) {
JSONObject outputJSON = getImageJSON(image); //here comes the JSON which i posted above
JSONObject coordsPack = (JSONObject) outputJSON.get("coords");
JSONObject merged = new JSONObject();
merged.put("x", new JSONArray());
merged.put("y", new JSONArray());
for (String index : tokens) {
JSONObject coordXY = (JSONObject) coordsPack.get(index);
JSONArray xList = (JSONArray) coordXY.get("x");
JSONArray yList = (JSONArray) coordXY.get("y");
merged.get("x").addAll(xList);
merged.get("y").addAll(yList);
}
System.out.println(merged);
}
但问题是我在merged.get("x").addAll(xList);
和merged.get("y").addAll(yList);
时遇到错误我无法访问这些方法。
答案 0 :(得分:1)
您必须先填写列表,然后从for循环中取出以下这些行。
merged.get("x").addAll(xList);
merged.get("y").addAll(yList);
顺便说一句,这是实现目标的最佳设计。
答案 1 :(得分:1)
您是否需要首先将其强制转换为JSONArray类,就像上面的2行一样?
答案 2 :(得分:0)
根据@cihan七的建议,我能够得到我的问题的答案是我的解决方案:
JSONObject coordsPack = (JSONObject) outputJSON.get("coords");
JSONObject merged = new JSONObject();
JSONArray xList = new JSONArray();
JSONArray yList = new JSONArray();
for (String index : tokens) {
JSONObject coordXY = (JSONObject) coordsPack.get(index);
xList.addAll((JSONArray) coordXY.get("x"));
yList.addAll((JSONArray) coordXY.get("y"));
}
merged.put("x", xList);
merged.put("y", yList);
System.out.println(merged);