1. Student类
package Anntation;
public class Student {
String name;
public void showName(String name){
System.out.println("showName..."+name);
}
}
2. 定义注解
package Anntation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ProAnno {
String className();
String methodName();
}
3. 使用注解
package Anntation;
import java.lang.reflect.Method;
@ProAnno(className = "Anntation.Student",methodName = "showName")
public class ReflectDemo {
public static void main(String[] args) throws Exception{
/*
将一下工作放在 注解中进行
前提:不能改变该类的任何代码。
可以创建任意类的对象,可以执行任意方法
*//*
//1、加载配置文件
//1.1 创建Properties 对象
Properties pro = new Properties();
//1.2 加载配置文件,转换为一个集合对象
//1.2.1 获取class 目录下的配置文件
//字节码文件的类加载器
ClassLoader classLoader = ReflectDemo.class.getClassLoader();
//有了类加载器,可以加载到src 下面的 class文件,也可加载 一些配置文件
//classLoader.getResource()//获取资源的路径
//获取资源对应的字节流
InputStream inputStream = classLoader.getResourceAsStream("pro.properties");
pro.load(inputStream);
//System.out.println(pro);
//2. 获取配置文件中定义的数据
String className = pro.getProperty("className");
String methodName = pro.getProperty("methodName");
//System.out.println(className+" "+methodName);
*/
// 1, 解析注解
//1.1 获取该类的字节码文件
Class<ReflectDemo> reflectDemoClass = ReflectDemo.class;
// 2. 获取上边的注解对象
//其实就是在内存中生成一个该注解接口的子类实现类
/*
public class ProImpl implements ProAnno{
public String className(){
return "Anntation.Student";
}
public String methodName(){
return "showName";
}
}
*/
ProAnno proAnno = reflectDemoClass.getAnnotation(ProAnno.class);
String className = proAnno.className();
String methodName = proAnno.methodName();
System.out.println(className +","+methodName);
//3. 加载该类进内存
Class cls = Class.forName(className);
//4. 创建对象
Object object = cls.newInstance();
//5. 获取方法对象
//methodName
System.out.println(methodName);
Method method = cls.getMethod(methodName, String.class);
//不知道为什么这样就不行 因为就是在 配置文件的eat 后面多加了一个空格 orz
//Method method = cls.getMethod(methodName);
//6. 执行方法
//method.invoke(object);
method.invoke(object,"jzj");
}
}
运行结果
调用student中的方法并输出