JAVA内省(Introspector)

时间:2023-08-27 20:17:08

什么是Java内省:内省是Java语言对Bean类属性、事件的一种缺省处理方法。

Java内省的作用:一般在开发框架时,当需要操作一个JavaBean时,如果一直用反射来操作,显得很麻烦;所以sun公司开发一套API专门来用来操作JavaBean

  1. package com.javax.iong.javabean0301;
  2. public class Person {
  3. private String name;
  4. public String getName() {
  5. return name;
  6. }
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  10. public int getAge() {
  11. return age;
  12. }
  13. public void setAge(int age) {
  14. this.age = age;
  15. }
  16. private int age;
  17. }
  1. package com.javax.iong.javabean0301;
  2. import java.beans.BeanInfo;
  3. import java.beans.Introspector;
  4. import java.beans.PropertyDescriptor;
  5. import java.lang.reflect.Method;
  6. import org.junit.Test;
  7. public class Test1 {
  8. @Test
  9. public void tes1() throws Exception {
  10. Class<?> cl = Class.forName("com.javax.iong.javabean0301.Person");
  11. // 在bean上进行内省
  12. BeanInfo beaninfo = Introspector.getBeanInfo(cl, Object.class);
  13. PropertyDescriptor[] pro = beaninfo.getPropertyDescriptors();
  14. Person p = new Person();
  15. System.out.print("Person的属性有:");
  16. for (PropertyDescriptor pr : pro) {
  17. System.out.print(pr.getName() + " ");
  18. }
  19. System.out.println("");
  20. for (PropertyDescriptor pr : pro) {
  21. // 获取beal的set方法
  22. Method writeme = pr.getWriteMethod();
  23. if (pr.getName().equals("name")) {
  24. // 执行方法
  25. writeme.invoke(p, "xiong");
  26. }
  27. if (pr.getName().equals("age")) {
  28. writeme.invoke(p, 23);
  29. }
  30. // 获取beal的get方法
  31. Method method = pr.getReadMethod();
  32. System.out.print(method.invoke(p) + " ");
  33. }
  34. }
  35. @Test
  36. public void test2() throws Exception {
  37. PropertyDescriptor pro = new PropertyDescriptor("name", Person.class);
  38. Person preson=new Person();
  39. Method  method=pro.getWriteMethod();
  40. method.invoke(preson, "xiong");
  41. System.out.println(pro.getReadMethod().invoke(preson));
  42. }
  43. }