共计 1112 个字符,预计需要花费 3 分钟才能阅读完成。
要读取所有带注解的内容,可以使用反射机制。
首先,需要获取目标类的 Class 对象。然后,使用 Class 对象的 getAnnotations() 方法,获取到这个类上所有的注解。再使用 Class 对象的 getDeclaredMethods() 方法,获取到这个类的所有方法。接下来,遍历这些方法,使用 Method 对象的 getAnnotations() 方法,获取到每个方法上的注解。
下面是一个示例代码:
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public class AnnotationReader {public static void main(String[] args) {
Class clazz = MyClass.class;
// 读取类上的注解
Annotation[] classAnnotations = clazz.getAnnotations();
for (Annotation annotation : classAnnotations) {System.out.println(annotation);
}
// 读取方法上的注解
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {Annotation[] methodAnnotations = method.getAnnotations();
for (Annotation annotation : methodAnnotations) {System.out.println(annotation);
}
}
}
}
// 带有注解的类
@MyAnnotation("class annotation")
class MyClass {
// 带有注解的方法
@MyAnnotation("method annotation")
public void myMethod() {// ...}
}
// 自定义注解
@interface MyAnnotation {String value();
}
运行上述代码,输出结果为:
@MyAnnotation(value=class annotation)
@MyAnnotation(value=method annotation)
这样就可以读取到所有带注解的内容了。需要注意的是,上述代码只读取了类和方法上的注解,如果还想读取字段上的注解,可以使用 Class 对象的 getDeclaredFields() 方法获取字段数组,然后遍历字段数组,再通过 Field 对象的 getAnnotations() 方法读取字段上的注解。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-20