比较和删除List和数组java中不存在的元素

时间:2013-10-09 10:57:03

标签: java arrays list

我有一个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++) {
            // ??
        }
    }

感谢。

2 个答案:

答案 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

根据您的需要。