如何按属性查找集合中的元素?

时间:2012-06-11 12:54:49

标签: java collections apache-commons

我有一个项目列表,我想找到一个具有布尔属性(字段变量)x=true的项目列表。

我知道这可以通过迭代来完成,但我一直在寻找一种在Apache Commons这样的公共库中执行此操作的常用方法。

5 个答案:

答案 0 :(得分:21)

你可以使用apache commons集合为它实现谓词。

http://commons.apache.org/collections/apidocs/org/apache/commons/collections/CollectionUtils.html

样品:

package snippet;

import java.util.Arrays;
import java.util.Collection;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Predicate;

public class TestCollection {

    public static class User {

        private String name;

        public User(String name) {
            super();
            this.name = name;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        @Override
        public String toString() {
            return "User [name=" + name + "]";
        }

    }

    public static void main(String[] args) {
        Collection<User> users = Arrays.asList(new User("User Name 1"), new User("User Name 2"), new User("Another User"));
        Predicate predicate = new Predicate() {

            public boolean evaluate(Object object) {
                return ((User) object).getName().startsWith("User");
            }
        };
        Collection filtered = CollectionUtils.select(users, predicate);
        System.out.println(filtered);
    }
}

可在此处找到一些示例: http://apachecommonstipsandtricks.blogspot.de/2009/01/examples-of-functors-transformers.html

如果您需要更通用的内容,例如检查特定字段或属性的值,您可以执行以下操作:

public static class MyPredicate implements Predicate {

    private Object expected;
    private String propertyName;

    public MyPredicate(String propertyName, Object expected) {
        super();
        this.propertyName = propertyName;
        this.expected = expected;
    }

    public boolean evaluate(Object object) {
        try {
            return expected.equals(PropertyUtils.getProperty(object, propertyName));
        } catch (Exception e) {
            return false;
        }
    }

}

这可以将特定属性与预期值进行比较,并且使用类似于:

Collection filtered = CollectionUtils.select(users, new MyPredicate("name", "User Name 2"));

答案 1 :(得分:11)

问题是Java中的迭代通常更简单,更清晰。也许Java 8的Closures将解决这个问题。 ;)

与@ Spaeth的解决方案比较。

List<String> mixedup = Arrays.asList("A", "0", "B", "C", "1", "D", "F", "3");
List<String> numbersOnlyList = new ArrayList<>();
for (String s : mixedup) {
    try {
        // here you could evaluate you property or field
        Integer.valueOf(s);
        numbersOnlyList.add(s);
    } catch (NumberFormatException ignored) {
    }
}
System.out.println("Results of the iterated List: " + numbersOnlyList);

你可以看到它更短更简洁。

答案 2 :(得分:4)

您可以使用Google guavafilter方法执行此操作。 Commons也有一个filter方法

答案 3 :(得分:4)

List<Foo> result = foos.stream()
  .filter(el -> el.x == true)
  .collect(Collectors.toList());

https://www.mkyong.com/java8/java-8-streams-filter-examples/

答案 4 :(得分:1)

实现此目的在java中,您可以覆盖hashCode和equals方法 -

例如

@Override
public int hashCode() {
    return eventId;
}

@Override
public boolean equals(Object obj) {
    if(obj instanceof CompanyTimelineView) {
        CompanyTimelineView new_name = (CompanyTimelineView) obj;
        if(new_name.eventId.intValue() == this.eventId.intValue()){
            return true;
        }
    }
    return false;
}

在这个例子中,我有mached eventId整数值。你可以在这里使用你的班级和他的财产。 在此之后,您可以使用list的contains,indexOf,lastIndexOf和get方法来查找列表中的元素。见下文。

//tempObj is nothing but an empty object containing the essential properties
//tempObj should posses all the properties that are being compared in equals method.

if(listOfObj.contains(tempObj)){
    return listOfObj.get(listOfObj.indexOf(tempObj));
}