PropertyUtils類是Apache Commons BeanUtils庫中的一個類,用于操作JavaBean對象的屬性。
下面是一個使用PropertyUtils類的實例:
import java.lang.reflect.InvocationTargetException;
import org.apache.commons.beanutils.PropertyUtils;
public class PropertyUtilsExample {
public static void main(String[] args) {
// 創建一個示例JavaBean對象
Person person = new Person();
person.setName("John");
person.setAge(25);
try {
// 獲取并輸出name屬性的值
String name = (String) PropertyUtils.getProperty(person, "name");
System.out.println("Name: " + name);
// 設置age屬性的值為30,并輸出
PropertyUtils.setProperty(person, "age", 30);
int age = person.getAge();
System.out.println("Age: " + age);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
}
}
class Person {
private String name;
private int age;
// 省略構造方法和其他方法
// name屬性的getter和setter方法
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
// age屬性的getter和setter方法
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
運行上述代碼,會輸出以下結果:
Name: John
Age: 30
這個示例演示了如何使用PropertyUtils類獲取和設置JavaBean對象的屬性值。通過getProperty方法可以獲取屬性值,通過setProperty方法可以設置屬性值。