在以前的文章中有简单介绍过java的反射机制,但没有深入了解,补充一下。
反射:
反射是 JVM 在运行时才动态加载类或调用方法/访问属性,它不需要事先(写代码的时候或编译期)知道运行对象是谁。主要功能是在运行时判断任意一个对象所属的类;在运行时构造任意一个类的对象;在运行时判断任意一个类所具有的成员变量和方法(通过反射甚至可以调用private方法);在运行时调用任意一个对象的方法
1 | getName():获得类的完整名字。 |
反射步骤:
获取一个对象
- 获取类的 Class 对象实例
Class cla = Class.forName("cn.spleated.Car");
- 根据 Class 对象实例获取 Constructor 对象
Constructor CarConstructor = cla.getConstructor();
- 使用 Constructor 对象的 newInstance 方法获取反射类对象
Object appleObj = CarConstructor.newInstance();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import static java.lang.Class.forName;
public class ConstructorDemo {
public ConstructorDemo(){}
public ConstructorDemo(int a,int b){
System.out.println("a="+a+"\nb="+b);
}
public static void main(String args[]) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
Class cls = forName("ConstructorDemo");
Class partypes[]=new Class[2];
partypes[0] = Integer.TYPE;
partypes[1] = Integer.TYPE;
Constructor ct = cls.getConstructor(partypes);
Object arg[] = new Object[2];
arg[0] = new Integer(37);
arg[1] = new Integer(14);
Object ret = ((Constructor) ct).newInstance(arg);
}
}
调用某一个方法
- 获取方法的 Method 对象
Method setPriceMethod = cla.getMethod("setPrice", int.class);
- 利用 invoke 方法调用方法
setPriceMethod.invoke(appleObj, 14);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class Methodemo {
public int add(int a,int b){
return a+b;
}
public static void main(String args[]) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {
Class cls = Class.forName("Methodemo");
Class pro[] = new Class[2];
pro[0] = Integer.TYPE;
pro[1] = Integer.TYPE;
Method me = cls.getMethod("add",pro);
Methodemo metobj = new Methodemo();
Object arg[] = new Object[2];
arg[0] = new Integer(13);
arg[1] = new Integer(25);
Object reobj = me.invoke(metobj,arg);
Integer ret = (Integer) reobj;
System.out.println(ret.intValue());
}
}
Java语言执行系统命令
由JVM创建一个本机进程,加载对应的指令到进程的地址空间中,然后执行该指令。java.lang.Runtime.getRuntime().exec()
和java.lang.ProcessBuilder.start()方
法,其实就是创建一个进程的方法。具体可查看Java官方文档
跟一下代码流程
- 进入
java.lang.Runtime
类中,Runtime类
的构造器是private
修饰的,无法直接获得Runtime类的实例
,只能通过getRuntime()
来间接获取一个Runtime类的实例 - 跟进
exec()方法
# exec()
底层代码是调用了ProcessBuilder类
- 在
ProcessBuilder
类代码中,ProcessBuilder类
用start方法创建进程。调用java.lang.ProcessImpl
类的start方法,实现创建本机进程,执行系统命令的功能 - 跟进
ProcessImpl类
,他是继承自Process类
的final类
- 查看他的构造器,是private修饰的,无法直接在
java.lang
包外,直接调用ProcessImpl
类。 - 跟进
ProcessImpl类
的start方法
,最后是返回了一个ProcessImpl 类的实例
流程图
分析下上篇文章的通过
getRuntime().exec()
调用计算机1
2
3
4
5
6
7
8
9
10
11import java.lang.reflect.InvocationTargetException;
public class POC {
public static void main(String args[]) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException, ClassNotFoundException {
Object runtime=Class.forName("java.lang.Runtime")
.getMethod("getRuntime",new Class[]{})
.invoke(null);
Class.forName("java.lang.Runtime")
.getMethod("exec", String.class)
.invoke(runtime,"calc.exe");
}
}获取Runtime类的Class对象
- 分别获取Runtime类Class对象的getRuntime方法和exec方法的Method对象
- 利用getRuntime方法的Method对象,进行invoke调用,获得Runtime对象实例
- 利用exec方法的Method对象,进行invoke调用,执行系统命令
参考文献:https://www.cnblogs.com/chanshuyi/p/head_first_of_reflection.html
https://china-jianchen.iteye.com/blog/728774
https://xz.aliyun.com/t/2342