PropertyUtils.getPropertyDescriptors利用反射機制獲取類中的屬性
第一步:建立java專案
第二步:建立兩個類
我建立的是一個bean.java類,和beanTest.java類,同目錄下
第三步:寫程式碼
bean.java
public class bean {
String name;
String password;
}
beanTest.java
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import org.apache.commons.beanutils.PropertyUtils;
public class beanTest {
public static void main(String args[]) {
beanTest bt=new beanTest();
bean bn=new bean();
Object obj=bn;
bt.test(obj);
}
public void test(Object obj)
{
PropertyDescriptor[] pd = PropertyUtils.getPropertyDescriptors(obj);
System.out.print(pd.length);
for (int i = 0; i < pd.length; i++) {
String name = pd[i].getName();
System.out.print(name);
}
}
}
打印出來的效果:1 class 說明只找到bean中的一個屬性class
第四步:接下來我們把bean改一下,給屬性加上get,set方法
public class bean {
String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
String password;
}
執行結果:3 class name password
總結: org.apache.commons.beanutils.PropertyUtils的getPropertyDescriptors方法可以通過傳入的物件類引數值,找到它的屬性PropertyDescriptor陣列。
思考:
Field field = ReflectionUtils.findField(entityClass, fieldName); field.setAccessible(true);
String fieldType = field.getType().toString();
其中class型別的屬性對應的屬性型別是什麼??????