JAVA反射机制代码详解
通过一个对象获得完整的包名和类名
1 package net.xsoftlab.baike; 2 public class TestReflect { 3 public static void main(String[] args) throws Exception { 4 TestReflect testReflect = new TestReflect(); 5 System.out.println(testReflect.getClass().getName()); 6 // 结果 net.xsoftlab.baike.TestReflect 7 } 8 }
实例化Class类对象
1 package net.xsoftlab.baike; 2 public class TestReflect { 3 public static void main(String[] args) throws Exception { 4 Class<?> class1 = null; 5 Class<?> class2 = null; 6 Class<?> class3 = null; 7 // 一般采用这种形式 8 class1 = Class.forName("net.xsoftlab.baike.TestReflect"); 9 class2 = new TestReflect().getClass(); 10 class3 = TestReflect.class; 11 System.out.println("类名称 " + class1.getName()); 12 System.out.println("类名称 " + class2.getName()); 13 System.out.println("类名称 " + class3.getName()); 14 } 15 }
获取一个对象的父类与实现的接口
1 package net.xsoftlab.baike; 2 import java.io.Serializable; 3 public class TestReflect implements Serializable { 4 private static final long serialVersionUID = -2862585049955236662L; 5 public static void main(String[] args) throws Exception { 6 Class<?> clazz = Class.forName("net.xsoftlab.baike.TestReflect"); 7 // 取得父类 8 Class<?> parentClass = clazz.getSuperclass(); 9 System.out.println("clazz的父类为:" + parentClass.getName()); 10 // clazz的父类为: java.lang.Object 11 // 获取所有的接口 12 Class<?> intes[] = clazz.getInterfaces(); 13 System.out.println("clazz实现的接口有:"); 14 for (int i = 0; i < intes.length; i++) { 15 System.out.println((i + 1) + ":" + intes[i].getName()); 16 } 17 // clazz实现的接口有: 18 // 1:java.io.Serializable 19 } 20 }
通过反射机制实例化一个类的对象
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Constructor; 3 public class TestReflect { 4 public static void main(String[] args) throws Exception { 5 Class<?> class1 = null; 6 class1 = Class.forName("net.xsoftlab.baike.User"); 7 // 第一种方法,实例化默认构造方法,调用set赋值 8 User user = (User) class1.newInstance(); 9 user.setAge(20); 10 user.setName("Rollen"); 11 System.out.println(user); 12 // 结果 User [age=20, name=Rollen] 13 // 第二种方法 取得全部的构造函数 使用构造函数赋值 14 Constructor<?> cons[] = class1.getConstructors(); 15 // 查看每个构造方法需要的参数 16 for (int i = 0; i < cons.length; i++) { 17 Class<?> clazzs[] = cons[i].getParameterTypes(); 18 System.out.print("cons[" + i + "] ("); 19 for (int j = 0; j < clazzs.length; j++) { 20 if (j == clazzs.length - 1) 21 System.out.print(clazzs[j].getName()); 22 else 23 System.out.print(clazzs[j].getName() + ","); 24 } 25 System.out.println(")"); 26 } 27 // 结果 28 // cons[0] (java.lang.String) 29 // cons[1] (int,java.lang.String) 30 // cons[2] () 31 user = (User) cons[0].newInstance("Rollen"); 32 System.out.println(user); 33 // 结果 User [age=0, name=Rollen] 34 user = (User) cons[1].newInstance(20, "Rollen"); 35 System.out.println(user); 36 // 结果 User [age=20, name=Rollen] 37 } 38 } 39 class User { 40 private int age; 41 private String name; 42 public User() { 43 super(); 44 } 45 public User(String name) { 46 super(); 47 this.name = name; 48 } 49 public User(int age, String name) { 50 super(); 51 this.age = age; 52 this.name = name; 53 } 54 public int getAge() { 55 return age; 56 } 57 public void setAge(int age) { 58 this.age = age; 59 } 60 public String getName() { 61 return name; 62 } 63 public void setName(String name) { 64 this.name = name; 65 } 66 @Override 67 public String toString() { 68 return "User [age=" + age + ", name=" + name + "]"; 69 } 70 }
获取某个类的全部属性
1 package net.xsoftlab.baike; 2 import java.io.Serializable; 3 import java.lang.reflect.Field; 4 import java.lang.reflect.Modifier; 5 public class TestReflect implements Serializable { 6 private static final long serialVersionUID = -2862585049955236662L; 7 public static void main(String[] args) throws Exception { 8 Class<?> clazz = Class.forName("net.xsoftlab.baike.TestReflect"); 9 System.out.println("===============本类属性==============="); 10 // 取得本类的全部属性 11 Field[] field = clazz.getDeclaredFields(); 12 for (int i = 0; i < field.length; i++) { 13 // 权限修饰符 14 int mo = field[i].getModifiers(); 15 String priv = Modifier.toString(mo); 16 // 属性类型 17 Class<?> type = field[i].getType(); 18 System.out.println(priv + " " + type.getName() + " " + field[i].getName() + ";"); 19 } 20 21 System.out.println("==========实现的接口或者父类的属性=========="); 22 // 取得实现的接口或者父类的属性 23 Field[] filed1 = clazz.getFields(); 24 for (int j = 0; j < filed1.length; j++) { 25 // 权限修饰符 26 int mo = filed1[j].getModifiers(); 27 String priv = Modifier.toString(mo); 28 // 属性类型 29 Class<?> type = filed1[j].getType(); 30 System.out.println(priv + " " + type.getName() + " " + filed1[j].getName() + ";"); 31 } 32 } 33 }
获取某个类的全部方法
1 package net.xsoftlab.baike; 2 import java.io.Serializable; 3 import java.lang.reflect.Method; 4 import java.lang.reflect.Modifier; 5 public class TestReflect implements Serializable { 6 private static final long serialVersionUID = -2862585049955236662L; 7 public static void main(String[] args) throws Exception { 8 Class<?> clazz = Class.forName("net.xsoftlab.baike.TestReflect"); 9 Method method[] = clazz.getMethods(); 10 for (int i = 0; i < method.length; ++i) { 11 Class<?> returnType = method[i].getReturnType(); 12 Class<?> para[] = method[i].getParameterTypes(); 13 int temp = method[i].getModifiers(); 14 System.out.print(Modifier.toString(temp) + " "); 15 System.out.print(returnType.getName() + " "); 16 System.out.print(method[i].getName() + " "); 17 System.out.print("("); 18 for (int j = 0; j < para.length; ++j) { 19 System.out.print(para[j].getName() + " " + "arg" + j); 20 if (j < para.length - 1) { 21 System.out.print(","); 22 } 23 } 24 Class<?> exce[] = method[i].getExceptionTypes(); 25 if (exce.length > 0) { 26 System.out.print(") throws "); 27 for (int k = 0; k < exce.length; ++k) { 28 System.out.print(exce[k].getName() + " "); 29 if (k < exce.length - 1) { 30 System.out.print(","); 31 } 32 } 33 } else { 34 System.out.print(")"); 35 } 36 System.out.println(); 37 } 38 } 39 }
通过反射机制调用某个类的方法
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Method; 3 public class TestReflect { 4 public static void main(String[] args) throws Exception { 5 Class<?> clazz = Class.forName("net.xsoftlab.baike.TestReflect"); 6 // 调用TestReflect类中的reflect1方法 7 Method method = clazz.getMethod("reflect1"); 8 method.invoke(clazz.newInstance()); 9 // Java 反射机制 - 调用某个类的方法1. 10 // 调用TestReflect的reflect2方法 11 method = clazz.getMethod("reflect2", int.class, String.class); 12 method.invoke(clazz.newInstance(), 20, "张三"); 13 // Java 反射机制 - 调用某个类的方法2. 14 // age -> 20. name -> 张三 15 } 16 public void reflect1() { 17 System.out.println("Java 反射机制 - 调用某个类的方法1."); 18 } 19 public void reflect2(int age, String name) { 20 System.out.println("Java 反射机制 - 调用某个类的方法2."); 21 System.out.println("age -> " + age + ". name -> " + name); 22 } 23 }
通过反射机制操作某个类的属性
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Field; 3 public class TestReflect { 4 private String proprety = null; 5 public static void main(String[] args) throws Exception { 6 Class<?> clazz = Class.forName("net.xsoftlab.baike.TestReflect"); 7 Object obj = clazz.newInstance(); 8 // 可以直接对 private 的属性赋值 9 Field field = clazz.getDeclaredField("proprety"); 10 field.setAccessible(true); 11 field.set(obj, "Java反射机制"); 12 System.out.println(field.get(obj)); 13 } 14 }
反射机制的动态代理
1 // 获取类加载器的方法 2 TestReflect testReflect = new TestReflect(); 3 System.out.println("类加载器 " + testReflect.getClass().getClassLoader().getClass().getName()); 4 package net.xsoftlab.baike; 5 import java.lang.reflect.InvocationHandler; 6 import java.lang.reflect.Method; 7 import java.lang.reflect.Proxy; 8 //定义项目接口 9 interface Subject { 10 public String say(String name, int age); 11 } 12 // 定义真实项目 13 class RealSubject implements Subject { 14 public String say(String name, int age) { 15 return name + " " + age; 16 } 17 } 18 class MyInvocationHandler implements InvocationHandler { 19 private Object obj = null; 20 public Object bind(Object obj) { 21 this.obj = obj; 22 return Proxy.newProxyInstance(obj.getClass().getClassLoader(), obj.getClass().getInterfaces(), this); 23 } 24 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 25 Object temp = method.invoke(this.obj, args); 26 return temp; 27 } 28 } 29 /** 30 * 在java中有三种类类加载器。 31 * 32 * 1)Bootstrap ClassLoader 此加载器采用c++编写,一般开发中很少见。 33 * 34 * 2)Extension ClassLoader 用来进行扩展类的加载,一般对应的是jrelibext目录中的类 35 * 36 * 3)AppClassLoader 加载classpath指定的类,是最常用的加载器。同时也是java中默认的加载器。 37 * 38 * 如果想要完成动态代理,首先需要定义一个InvocationHandler接口的子类,已完成代理的具体操作。 39 * 40 * @author xsoftlab.net 41 * 42 */ 43 public class TestReflect { 44 public static void main(String[] args) throws Exception { 45 MyInvocationHandler demo = new MyInvocationHandler(); 46 Subject sub = (Subject) demo.bind(new RealSubject()); 47 String info = sub.say("Rollen", 20); 48 System.out.println(info); 49 } 50 }
在泛型为Integer的ArrayList中存放一个String类型的对象。
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Method; 3 import java.util.ArrayList; 4 public class TestReflect { 5 public static void main(String[] args) throws Exception { 6 ArrayList<Integer> list = new ArrayList<Integer>(); 7 Method method = list.getClass().getMethod("add", Object.class); 8 method.invoke(list, "Java反射机制实例。"); 9 System.out.println(list.get(0)); 10 } 11 }
通过反射取得并修改数组的信息
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Array; 3 public class TestReflect { 4 public static void main(String[] args) throws Exception { 5 int[] temp = { 1, 2, 3, 4, 5 }; 6 Class<?> demo = temp.getClass().getComponentType(); 7 System.out.println("数组类型: " + demo.getName()); 8 System.out.println("数组长度 " + Array.getLength(temp)); 9 System.out.println("数组的第一个元素: " + Array.get(temp, 0)); 10 Array.set(temp, 0, 100); 11 System.out.println("修改之后数组第一个元素为: " + Array.get(temp, 0)); 12 } 13 }
通过反射机制修改数组的大小
1 package net.xsoftlab.baike; 2 import java.lang.reflect.Array; 3 public class TestReflect { 4 public static void main(String[] args) throws Exception { 5 int[] temp = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; 6 int[] newTemp = (int[]) arrayInc(temp, 15); 7 print(newTemp); 8 String[] atr = { "a", "b", "c" }; 9 String[] str1 = (String[]) arrayInc(atr, 8); 10 print(str1); 11 } 12 // 修改数组大小 13 public static Object arrayInc(Object obj, int len) { 14 Class<?> arr = obj.getClass().getComponentType(); 15 Object newArr = Array.newInstance(arr, len); 16 int co = Array.getLength(obj); 17 System.arraycopy(obj, 0, newArr, 0, co); 18 return newArr; 19 } 20 // 打印 21 public static void print(Object obj) { 22 Class<?> c = obj.getClass(); 23 if (!c.isArray()) { 24 return; 25 } 26 System.out.println("数组长度为: " + Array.getLength(obj)); 27 for (int i = 0; i < Array.getLength(obj); i++) { 28 System.out.print(Array.get(obj, i) + " "); 29 } 30 System.out.println(); 31 } 32 }
将反射机制应用于工厂模式
1 package net.xsoftlab.baike; 2 interface fruit { 3 public abstract void eat(); 4 } 5 class Apple implements fruit { 6 public void eat() { 7 System.out.println("Apple"); 8 } 9 } 10 class Orange implements fruit { 11 public void eat() { 12 System.out.println("Orange"); 13 } 14 } 15 class Factory { 16 public static fruit getInstance(String ClassName) { 17 fruit f = null; 18 try { 19 f = (fruit) Class.forName(ClassName).newInstance(); 20 } catch (Exception e) { 21 e.printStackTrace(); 22 } 23 return f; 24 } 25 } 26 /** 27 * 对于普通的工厂模式当我们在添加一个子类的时候,就需要对应的修改工厂类。 当我们添加很多的子类的时候,会很麻烦。 28 * Java 工厂模式可以参考 29 * http://baike.xsoftlab.net/view/java-factory-pattern 30 * 31 * 现在我们利用反射机制实现工厂模式,可以在不修改工厂类的情况下添加任意多个子类。 32 * 33 * 但是有一点仍然很麻烦,就是需要知道完整的包名和类名,这里可以使用properties配置文件来完成。 34 * 35 * java 读取 properties 配置文件 的方法可以参考 36 * http://baike.xsoftlab.net/view/java-read-the-properties-configuration-file 37 * 38 * @author xsoftlab.net 39 */ 40 public class TestReflect { 41 public static void main(String[] args) throws Exception { 42 fruit f = Factory.getInstance("net.xsoftlab.baike.Apple"); 43 if (f != null) { 44 f.eat(); 45 } 46 } 47 }