首先,需要有一个注解
代码语言:javascript复制@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
String FilePath();
}
其中:
代码语言:javascript复制@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
TYPE: 当前注解可以用于类声明 、
FIELD:当前注解可以用于成员变量声明位置、
METHOD: 当前注解可以用于方法声明位置 。
@Retention(RetentionPolicy.RUNTIME)
当前注解参与代码运行
然后,需要有个.java文件
代码语言:javascript复制@MyAnnotation(FilePath = "F:\test\day25\StudentSystemV1.4\data\students.json")
public class DataUtils {
//文件路径
private static String str;
//通过注解,得到文件路径
public static void main(String[] args) {
Class<DataUtils> cls = DataUtils.class;
MyAnnotation annotation = cls.getAnnotation(MyAnnotation.class);
str = annotation.FilePath();
System.out.println(str);
}
}
输出结果
代码语言:javascript复制F:testday25StudentSystemV1.4datastudents.json
Process finished with exit code 0