📅  最后修改于: 2020-11-04 07:04:08             🧑  作者: Mango
您可以通过使用“。”连接访问路径的属性名称来访问bean的nested属性的值。分隔符。
您可以使用以下方法获取并设置Nested属性的值:
PropertyUtils.getNestedProperty(Object,String)
PropertyUtils.setNestedProperty(Object,String,Object)
参数:
Object :这是一个要获取或修改其属性的bean。
String :它是要获取或修改的嵌套属性的名称。
在此示例中,您将看到如何获取和设置嵌套属性的值。我们将创建三个类; SubBean ,适用于bean的AppLayer1Bean和BeanUtilsDemo作为要运行的主程序。
import org.apache.commons.beanutils.PropertyUtils;
public class BeanUtilsDemo {
public static void main(String args[]){
try{
// create the bean
AppLayer1Bean nested = new AppLayer1Bean();
// set a SubBean which is part of another bean
SubBean sb = new SubBean();
sb.setStringProperty("Hello World from SubBean");
nested.setSubBean(sb);
// accessing and setting nested properties
PropertyUtils.setNestedProperty(
nested, "subBean.stringProperty",
"Hello World from SubBean, set via Nested Property Access");
System.out.println(
PropertyUtils.getNestedProperty(nested, "subBean.stringProperty"));
}
catch(Exception e){
System.out.println(e);
}
}
}
现在,我们将创建另一个名为SubBean.java的类,如下所示:
public class SubBean {
private int intProperty;
private String stringProperty;
public void setIntProperty(int intProperty) {
this.intProperty = intProperty;
}
public int getIntProperty() {
return this.intProperty;
}
public void setStringProperty(String stringProperty) {
this.stringProperty = stringProperty;
}
public String getStringProperty() {
return this.stringProperty;
}
}
再创建一个类AppLayer1Bean.java和以下代码:
public class AppLayer1Bean {
private SubBean subBean;
public void setSubBean(SubBean subBean) {
this.subBean = subBean;
}
public SubBean getSubBean(){
return this.subBean;
}
}
让我们执行以下步骤,看看上面的代码如何工作:
将上面的第一个代码另存为BeanUtilsDemo.java 。
现在,使用“运行”选项或Ctrl + f11执行代码,并显示以下输出。
PropertyUtils类提供了以下方法,该方法接受简单,索引和映射的属性访问的任意组合,以获取和设置指定bean的属性值。
PropertyUtils.getProperty(Object,String)
PropertyUtils.setProperty(Object,String,Object)
参数:
Object :这是一个要获取或修改其属性的bean。
String :它是要获取或修改的索引和/或嵌套属性的名称。
以下简单程序说明了getProperty和setProperty方法的用法:
import org.apache.commons.beanutils.PropertyUtils;
public class PropertyUtilsTest {
public static void main(String args[]){
try{
Tv Color = new Tv();
PropertyUtils.setProperty(Color, "color", "Black");
String value = (String) PropertyUtils.getProperty(Color, "color");
System.out.println("The color value of Tv is: " + value);
}
catch(Exception ex){
ex.printStackTrace();
}
}
public static class Tv{
private String color;
public String getColor(){
return color;
}
public void setColor(String color){
this.color = color;
}
}
}
运行上面示例中指定的代码,您将获得以下输出: