我有一个String
数组和一个List<String>
。我想要做的是使用更大的变量,并使用它作为较小变量的值删除的基础。我还希望得到较大尺寸变量的值不存在于另一个中。请注意,两个变量在数据类型上不同的原因是因为String[] group
变量是来自jsp页面的复选框组,而List<String> existingGroup
是来自数据库的ResultSet。例如:
String[] group
包含:
Apple
Banana
Juice
Beef
List<String> existingGroup
包含:
Apple
Beef
Lasagna
Flower
Lychee
由于两个变量的大小不同,它仍应正确删除值。
到目前为止我所拥有的是
if(groupId.length >= existingGroup.size()) {
for(int i = 0; i < groupId.length; i++) {
if(! existingGroup.contains(groupId[i])) {
if(existingGroup.get(existingGroup.indexOf(groupId[i])) != null) {
// I'm unsure if I'm doing this right
}
}
}
} else {
for(int i = 0; i < existingGroup.size(); i++) {
// ??
}
}
感谢。
答案 0 :(得分:4)
好的,我会先将您的数组转换为List
。
List<String> input = Arrays.asList(array);
//now you can do intersections
input.retainAll(existingGroup); //only common elements were left in input
或者,如果您想要不常见的元素,只需执行
existingGroup.removeAll(input); //only elements which were not in input left
input.removeAll(existingGroup); //only elements which were not in existingGroup left
选择是你的: - )
答案 1 :(得分:3)
您可以使用List
界面提供的方法。
list.removeAll(Arrays.asList(array)); // Differences removed
或
list.retainAll(Arrays.asList(array)); // Same elements retained
根据您的需要。