Java反射

SpringContext.getApplicationContext().getBean(Test.class);

package com.test;

public class HelloWorld {

  public   int i = 0;
    int j = 1;

    public HelloWorld() {
    }

    public HelloWorld(int i) {
        this.i = i;
    }

    public int getI() {
        System.out.println(i);
        return i;
    }

    public void setI(int i) {
        System.out.println(i);
        this.i = i;
    }
}
————————————————
package com.test;

import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;

public class Test {
    public static void main(String[] args) throws Exception {

        /*
         *通过反射获取实例
         */
        Class<?> aClass = Class.forName("com.test.HelloWorld");
        HelloWorld helloWorld = (HelloWorld) aClass.newInstance();

        /*
         *获取类属性信息
         */
        Class<?> aClass1 = Class.forName("com.test.HelloWorld");
        Field[] declaredFields = aClass.getDeclaredFields();//获取属性信息
        for (int i = 0; i < declaredFields.length; i++) {
            Field fields = declaredFields[i];
            //不管成员变量的访问权限是public、protected、默认、还是private,isAccessible()方法都返回false
            //当isAccessible()的结果是false时,如果该字段是private修饰的不允许通过反射访问该字段的值 ,必须要改成true才可以访问 所以     f.setAccessible(true);作用就是让我们在用反射时访问私有变量
            if (fields.isAccessible()) {  判断是否是私有
                fields.setAccessible(false);
            }
            System.out.println("属性名为" +fields.getName());
            System.out.println("属性类型为"+fields.getType());
            System.out.println("属性值为"+fields.get(aClass1.newInstance()));
            System.out.println("访问修饰符为"+ Modifier.toString(fields.getModifiers()));
        }

        /*
         *获取类方法信息
         */
        Class<?> aClass2 = Class.forName("com.test.HelloWorld");
        Method[] declaredMethods = aClass2.getDeclaredMethods();
        for (Method method : declaredMethods) {
            System.out.println("方法名" + method.getName());
            System.out.println("返回类型" + method.getReturnType());
            System.out.println("访问修饰符" + Modifier.toString(method.getModifiers()));

            //参数类型  class数组
            Class<?>[] parameterTypes = method.getParameterTypes();
            if (parameterTypes.length > 0) {

                for (Class c : parameterTypes) {

                    System.out.println("参数类型为" + c);
                }
            }
            System.out.println();

        }

        /*
         *获取类的构造函数信息
         */
        Class<?> aClass3 = Class.forName("com.test.HelloWorld");
        Constructor<?>[] constructors = aClass3.getConstructors();
        for (Constructor constructor : constructors) {
            System.out.println("名字"+constructor.getName());
            System.out.println("访问修饰符" + Modifier.toString(constructor.getModifiers()));
            //获取参数类型的  数组
            Class[] parameterTypes = constructor.getParameterTypes();
            if (parameterTypes.length >0) {
                for (Class cla : parameterTypes) {
                    System.out.println("参数类型"+cla);
                }
            }
        }

        /*
         *修改类的属性
         */
        Class<?> aClass4 = Class.forName("com.test.HelloWorld");
        //getField只获取public修饰属性
        Field i = aClass4.getField("i");
        HelloWorld helloWorld0 = (HelloWorld) aClass4.newInstance();
        i.set(helloWorld0, 5);
        System.out.println(helloWorld0.i);


        /*
         *调用类的方法
         */
        Class<?> aClass5 = Class.forName("com.test.HelloWorld");
        HelloWorld helloWorld1 = (HelloWorld) aClass5.newInstance();
        Method setI = aClass5.getDeclaredMethod("setI", int.class);//setA参数int
        Method getI = aClass5.getDeclaredMethod("getI", null);//无参数null
        setI.invoke(helloWorld1, 123);
        getI.invoke(helloWorld1);

        /*
         *调用类的构造方法
         */
        //包名.类名
        Class<?> aClass6 = Class.forName("com.test.HelloWorld");
        //空参构造
        Constructor<?> constructor = aClass6.getConstructor();
        //有参数构造 传参Class<?>... parameterTypes ,三点表示传参是数组
       Class[] c = {int.class};
        Constructor<?> constructor1 = aClass6.getConstructor(c);
        //也可以这样写,比如构造器参数为int和String
        // aClass.getConstructor(int.class,String.class);

        //通过构造器new一个实例
        HelloWorld helloWorld2 = (HelloWorld) constructor.newInstance();
        HelloWorld helloWorld3 = (HelloWorld) constructor1.newInstance(22);
        System.out.println(helloWorld2);
        System.out.println(helloWorld3);

    }
}
        //包名.类名
        Class<?> aClass6 = Class.forName("com.test.HelloWorld");
        //空参构造
        Constructor<?> constructor = aClass6.getConstructor();
        //有参数构造 传参Class<?>... parameterTypes ,三点表示传参是数组
       Class[] c = {int.class};
        Constructor<?> constructor1 = aClass6.getConstructor(c);
        //也可以这样写,比如构造器参数为int和String
        // aClass.getConstructor(int.class,String.class);

        //通过构造器new一个实例
        HelloWorld helloWorld2 = (HelloWorld) constructor.newInstance();
        HelloWorld helloWorld3 = (HelloWorld) constructor1.newInstance(22);
        System.out.println(helloWorld2);
        System.out.println(helloWorld3);

    }
}

或者

package com.nzc.quartz.util.testTools;
import com.nzc.quartz.dto.Range;

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

/**
 * @explain JAVA反射工具类
 */
public class ReflectionUtil {

    /**
     * 获取私有成员变量的值
     * @param instance 要获取的对象
     * @param filedName 获取的变量名称
     * @return 返回获取变量的信息(需要强转)
     */
    public static Object getPrivateField(Object instance, String filedName) throws NoSuchFieldException, IllegalAccessException {
        Field field = instance.getClass().getDeclaredField(filedName);
        field.setAccessible(true);
        return field.get(instance);
    }

    /**
     * 设置私有成员的值
     * @param instance 要获取的对象
     * @param fieldName 要获取的变量名
     * @param value 设置的值
     */
    public static void setPrivateField(Object instance, String fieldName, Object value) throws NoSuchFieldException, IllegalAccessException {
        Field field = instance.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        field.set(instance, value);
    }

    /**
     * 访问私有方法
     * @param instance 要获取的对象
     * @param methodName 私有方法的名称
     * @param classes  CLASS的返回信息
     * @param objects 参数信息
     * @return
     */
    public static Object invokePrivateMethod(Object instance, String methodName, Class[] classes, String objects) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException {
        Method method = instance.getClass().getDeclaredMethod(methodName, classes);
        method.setAccessible(true);
        return method.invoke(instance, objects);
    }

    public static void main(String[] args) {
        Range range = new Range();
        range.setStartRowkey("sdfasas");
        try {
            setPrivateField(range,"startRowkey","里斯");
            Object startRowkey = getPrivateField(range, "startRowkey");
            if(null!=startRowkey){
                System.out.println(startRowkey.toString());
            }
        } catch (NoSuchFieldException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值