我使用java反射API从变量动态加载函数。当我调用同一类中的函数时,函数调用正在工作。
现在我正在尝试调用声明类之外的函数。这是我正在使用的代码。
package com.test.controller;
try
{
Class cls = Class.forName("com.test.Actions");
System.out.println("trying to get method name");
java.lang.reflect.Method method=cls.getMethod(action,String.class,HttpServletRequest.class);
System.out.println("got method name"+method);
val=method.invoke(this, instInputText,request).toString();
}
catch(Exception e){e.printStackTrace();}
我试图访问一个不同的类和函数,但我得到了以下错误。
java.lang.IllegalArgumentException: object is not an instance of declaring class
异常是因为这一行val=method.invoke(this, instInputText,request).toString();
。
您将this
作为实例传递给调用,这意味着它将执行类似this.method()
的操作。相反,您需要创建一个类Actions
的实例,并使用它来代替this
。