我目前正在使用Reflection
在类中执行一组方法,这些方法驻留在与我正在处理的项目不同的项目中。这些方法将依次调用此项目中的其他方法。虽然方法调用成功,但是由InvocationTargetException
引起的NoSuchMethodError
被抛出。我假设这是因为我使用反射调用的方法调用其他方法。出于这个原因,我已经在类路径中添加了另一个项目,但这不起作用。
请注意,另一个项目是我在GitHub
使用的一个开源项目,我只是将它用于分析,因此我不想用它进行操作。
有人可以帮我吗?
修改
以下是我目前的反思代码:
public void runSelectedTests(MethodSignature test) throws Exception{
//no paramater
Class<?> noparams[] = {};
try{
//load the test at runtime
//get the class
Class<?> cls = Class.forName(test.getClassName());
Constructor<?>[] cons = cls.getDeclaredConstructors();
//can use the first constructor if there are multiple
//if we instantiate with all constructors you end up calling the test methods depending on
//how many constructors you have
Constructor<?> cons1 = cons[0];
Object params[] = null;
if(cons1.getParameterTypes().length > 0){
params = new Object[cons1.getParameterTypes().length];
}
for(int i = 0; i < cons1.getParameterTypes().length; i++){
String type = cons1.getParameterTypes()[i].toString();
if(type.equals("byte") || type.equals("short") || type.equals("int")){
params[i] = 0;
}else if(type.equals("long")){
params[i] = (long)0.0;
}else if(type.equals("float")){
params[i] = (float)0.0;
}else if(type.equals("double")){
params[i] = (double)0.0;
}else if(type.equals("char")){
params[i] = (char)0;
}else if(type.equals("boolean")){
params[i] = false;
}else{
params[i] = null;
}
}
Object obj = cons1.newInstance(params);
//call the test method
Method method = cls.getDeclaredMethod(test.getName(), noparams);
method.invoke(obj, null);
}catch(Exception e){
System.out.println("exception "+e.getMessage());
}
}
对象MethodSignature存储方法名称和类的完全限定名称。
堆栈追踪:
Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.Evaluation.TestRunner.runSelectedTests(TestRunner.java:72)
at com.Main.AnalyserFactory.main(AnalyserFactory.java:41)
Caused by: java.lang.NoSuchMethodError: org.apache.commons.io.IOUtils.closeQuietly([Ljava/io/Closeable;)V
at org.apache.commons.io.IOUtilsTestCase.testCloseQuietly_AllCloseableIOException(IOUtilsTestCase.java:134)
... 6 more
修改
这是我试图调用的方法:
public void testCloseQuietly_AllCloseableIOException() {
final Closeable closeable = new Closeable() {
public void close() throws IOException {
throw new IOException();
}
};
IOUtils.closeQuietly(closeable, null, closeable);
}
错误似乎就行了:
IOUtils.closeQuietly(closeable, null, closeable);
答案 0 :(得分:3)
班级org.apache.commons.io.IOUtils没有将closeQuietly
作为参数的任何方法java.io.Closeable
。它有以下方法:
closeQuietly(InputStream input)
closeQuietly(OutputStream output)
closeQuietly(Reader reader)
closeQuietly(Writer writer)
你应该相应地传递你的论点。希望这会有所帮助。
答案 1 :(得分:0)
从1.5开始,所有Method反射方法都是参数值/类型的变量。
这看起来不对:
method.invoke(obj, null);
如果没有参数,请这样调用:
method.invoke(obj);
Simlarly,这个:
Method method = cls.getDeclaredMethod(test.getName(), noparams);
可以/应该只是
Method method = cls.getDeclaredMethod(test.getName());