我有一个对象列表,正在转换为JSONArray。正在遍历JSONObjects并制作一个JSONObjects数组。
现在,我要避免重复对象以插入到JSONArray中。
请在下面找到我的Java代码。
JSONArray responseArray1 = new JSONArray();
if (!itemList.isEmpty())
{
jsonArray = new JSONArray(itemList);
for (int i = 0; i < jsonArray.length(); i++)
{
JSONObject jsonObj = jsonArray.getJSONObject(i);
JSONObject responseObj = new JSONObject();
String attr_label = jsonObj.optString("attr_label");
if(StringUtils.equalsIgnoreCase(attr_label, "long_description")) {
long_description = jsonObj.optString("value");
}
else if(StringUtils.equalsIgnoreCase(attr_label, "description")) {
description = jsonObj.optString("value");
}
responseObj.put("id", jsonObj.opt("id")); // i will get duplicate id
responseObj.put("code", jsonObj.opt("code")); // i will get duplicate code
responseObj.put("long_description", long_description);
responseObj.put("description", description);
responseArray1.put(responseObj);
}
}
请找到我实际的jsonArray:
[
{
"code":"xyaz",
"attr_label":"long_description",
"id":"12717",
"value":"Command Module"
},
{
"code":"xyaz",
"attr_label":"description",
"id":"12717",
"value":"Set Point Adjustment"
},
]
我期望像下面的jsonArray:
[
{
"code":"xyaz",
"id":"12717",
"long_description":"Command Module"
"description" : "Set Point Adjustment"
}
]
更新:
我尝试使用以下代码来避免重复插入id
和code
字段。但工作不正常。其插入的副本也是如此。
List<String> dummyList=new ArrayList<String>();
JSONArray responseArray2 = new JSONArray(itemList);
if (!itemList.isEmpty())
{
jsonArray = new JSONArray(itemList);
for (int i = 0; i < jsonArray.length(); i++)
{
JSONObject jsonObj = jsonArray.getJSONObject(i);
JSONObject responseObj = new JSONObject();
String itemCode = jsonObj.optString("code");
String id = jsonObj.optString("id");
if(!dummyList.contains(itemCode) && !dummyList.contains(id) ) {
dummyList.add(String.valueOf(jsonObj.opt("id")));
dummyList.add(String.valueOf(jsonObj.opt("code")));
responseObj.put("id", jsonObj.opt("id"));
responseObj.put("code", jsonObj.opt("code"));
responseObj.put("long_description", long_description);
responseObj.put("description", description);
responseArray2.put(responseObj);
}
}
}
答案 0 :(得分:1)
制作一个临时数组列表,并在该arrayList中添加唯一代码,并检查它是否已存在于arrayList中,然后不要再次放置它
Map
答案 1 :(得分:-1)
使用TreeSet并将Comparator添加到其构造函数中,在其中比较对象的重复数据。 例如:-
Set<Sample> sampleSet=new TreeSet<>(new Sample());
其中示例类如下:-
class Sample implements Camparator<Sample>{
private String name;
private String id;
//getter
//setter
@Override
public String compare(Sample o1,Sample o2){
return o1.getName.compareTo(o2.getName);
}
}
这将提供一组唯一的名称条目。