通过自定义注解A类给B类赋值
自定义注解与反射说明
元注解:1)@Retention:RetentionPolicy.SOURCE :只在java源文件中存在,编译成.class文件后注解就不存在了。RetentionPolicy.CLASS:解在java源文件(.java文件)中存在,编译成.class文件后注解也还存在, * 被MyAnnotation注解类标识的类被类加载器加载到内存中后MyAnnotation注解就不存在了。RetentionPolicy.RUNTIME: 注解的生命周期一直程序运行时都存在,在运行时可以通过反射获取到 。
2)@Target: ElemenetType.CONSTRUCTOR:构造器 ElemenetType.FIELD :字段 ElemenetType.LOCAL_VARIABLE: 局部变量 ElemenetType.METHOD :方法 ElemenetType.PACKAGE :包 ElemenetType.PARAMETER :参数 ElemenetType.TYPE: 类
反射:1)Field[] fieldArray = stuClass.getDeclaredFields();获取所有的字段(包括私有、受保护、默认的) 2)Field[] fieldArray = clazz.getFields();获取所有公有的字段。3)Field field = stuClass.getField("name"); 获取某个"公有的"字段4)String field = stuClass.getDeclaredField("phoneNum");获取某个字段(可以是私有的)5)Method[] methodArray = stuClass.getMethods();获取所有的”公有“方法 6)Method[] methodArray = stuClass.getDeclaredMethods();获取所有的方法,包括私有的 参考链接
1、首先自定义一个注解类
package com.bwq.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)////定义注解的作用目标**作用范围字段
@Retention(RetentionPolicy.RUNTIME)// 注解会在class字节码文件中存在,在运行时可以通过反射获取到
public @interface MyAnnotation {
public String fieldName() default "myField";//“myField”是默认值,在使用时,可不赋值,否则必须赋值。
}
2、建两个实体类
User实体与Teacher实体
package com.bwq.model;
public class User {
private String name;
private String id;
private String sex;
private Integer age;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getId() { return id; }
public void setId(String id) { this.id = id; }
public String getSex() { return sex; }
public void setSex(String sex) { this.sex = sex; }
public Integer getAge() { return age; }
public void setAge(Integer age) { this.age = age; }
}
package com.bwq.model;
import com.bwq.annotation.MyAnnotation;
public class Teacher {
@MyAnnotation(fieldName="name")
private String name;
@MyAnnotation(fieldName="id")
private String id;
@MyAnnotation(fieldName="sex")
private String sex;
@MyAnnotation(fieldName="age")
private String age;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getId() { return id; }
public void setId(String id) { this.id = id; }
public String getSex() { return sex; }
public void setSex(String sex) { this.sex = sex; }
public String getAge() { return age; }
public void setAge(String age) { this.age = age; }
}
3、新增一个测试类(通过反射机制进行取赋值)
package com.bwq;
import java.lang.reflect.Field;
import com.bwq.annotation.MyAnnotation;
import com.bwq.model.Teacher;
import com.bwq.model.User;
public class Test {
public static void main(String[] args) {
Teacher t=new Teacher();
t.setAge("28");
t.setId("1");
t.setName("张三");
t.setSex("女");
User user=(User) ObjConvert(t,User.class);
System.out.println(user.getName());
}
public static Object ObjConvert(Object inputObject,Class cla){
try{
Field[] inputFields = inputObject.getClass().getDeclaredFields();
Field[] outputFields = cla.getDeclaredFields();
Object outputObject = cla.newInstance();//获取 User类 等价于User outputObject=new User();
for(Field field:inputFields){
for(Field outField:outputFields){
if(field.isAnnotationPresent(MyAnnotation.class)){//判断field是否有MyAnnotation注解 MyAnnotation mapeamentoAnnotation = field.getAnnotation(MyAnnotation.class);
if(mapeamentoAnnotation.fieldName().equals(outField.getName())){
field.setAccessible( true );//设置可见性
outField.setAccessible( true );
if(outField.getType()==Integer.class){//outField.getType() 获取字段类型
outField.set(outputObject, Integer.parseInt(field.get(inputObject)+""));//设置了一个值
}else{
outField.set(outputObject, field.get(inputObject));//设置了一个值
} } } } }
return outputObject;
}catch(Exception e){
e.printStackTrace();
return null;
} } }