Eclipse里面有包下面的测试类调用默认包下面的类里面的方法
Posted Sally
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse里面有包下面的测试类调用默认包下面的类里面的方法相关的知识,希望对你有一定的参考价值。
1、通过Class的静态方法获取.
Class clazz = Class.forName("类名");//将传入的类名所指定的类load到JVM内存中
Method[] methods = clazz.getMethods();//获取该相关类所有的public类型的方法
for (Method method : methods) {
method.invoke(clazz.newInstance());//执行该对象的无参构造方法来创建该类的实例调用方法
}
Method method = clazz.getMethod("方法名");//根据方法名获取该相关类的public类型的方法
method.invoke(clazz.newInstance());
2、通过类的加载器
ClassLoader classLoader = this.getClass().getClassLoader();//获取当前对象的类装载器
Class clazz1 = classLoader.loadClass("类名");//通过类装载器加载需要的类
Method[] methods = clazz1.getMethods();
for (Method method : methods) {
method.invoke(clazz1.newInstance());
}
Method method = clazz1.getMethod("方法名");
method.invoke(clazz1.newInstance());
以上是关于Eclipse里面有包下面的测试类调用默认包下面的类里面的方法的主要内容,如果未能解决你的问题,请参考以下文章
将 findbugs NotNull 设置为包下所有类的默认值
Liferay7 BPM门户开发之29: 核心kernel.util包下面的通用帮助类ParamUtilGetterUtil使用