1

有没有办法比较 an 中的属性Object是否等于字符串?

这是一个名为的示例 ObjetPerson

public class Person {

    private String firstName;
    private String lastName;

    public Person(String firstName, String lastName){
        super();
        this.firstName = firstName;
        this.lastName = lastName;
    }

    //.... Getter and Setter

}

现在我有一个方法,我需要检查该字符串是否与Person属性名称相同。

public boolean compareStringToPropertName(List<String> strs, String strToCompare){
    List<Person> persons = new ArrayList<Person>();
    String str = "firstName";

    // Now if the Person has a property equal to value of str, 
    // I will store that value to Person.
    for(String str : strs){

        //Parse the str to get the firstName and lastName
        String[] strA = str.split(delimeter); //This only an example

        if( the condintion if person has a property named strToCompare){
            persons.add(new Person(strA[0], strA[1]));
        }
    }

}

我的实际问题远非如此,现在我如何知道是否需要将字符串存储到Object. 我现在的关键是我有另一个与对象属性相同的字符串。

我不想有一个硬代码,这就是为什么我试图达到这样的条件。

总而言之,有没有办法知道这个字符串("firstName")与 Object 具有相同的属性名称(Person)

4

2 回答 2

5

您将使用反射:

http://java.sun.com/developer/technicalArticles/ALT/Reflection/

更准确地说,假设您知道对象 (Person) 的类,您将使用 Class.getField(propertyName) 的组合来获取表示属性的 Field 对象,并使用 Field.get(person) 来获取实际值(如果存在)。然后,如果它不为空,则您会认为该对象在此属性中具有值。

如果您的对象遵循一些约定,您可以使用“Java Beans”特定的库,例如: http ://commons.apache.org/beanutils/apidocs/org/apache/commons/beanutils/package-summary.html#standard 。基本的

于 2011-05-25T11:53:43.427 回答
4

您可以使用 获取所有声明的字段getDeclaredFields(),然后将其与字符串进行比较


例如:

class Person {
    private String firstName;
    private String lastName;
    private int age;
    //accessor methods
}

Class clazz = Class.forName("com.jigar.stackoverflow.test.Person");
for (Field f : clazz.getDeclaredFields()) {
      System.out.println(f.getName());
}

输出

名字
姓氏
年龄


或者

你也可以getDeclaredField(name)

Returns:
the Field object for the specified field in this class
Throws:
NoSuchFieldException - if a field with the specified name is not found.
NullPointerException - if name is null

也可以看看

于 2011-05-25T11:55:35.377 回答