如果参数和参数类型的数量已知,我可以通过变量名调用带参数的方法,但是如果只有参数和参数类型只在搜索时知道,则如何获取声明的方法[搜索方法 ]。
public static void invokeMethod (String myClass,
String myMethod,
Class[] params, Object[] args)
throws Exception {
Class c = Class.forName(myClass);
Method m = c.getDeclaredMethod(myMethod, params);
Object i = c.newInstance();
Object r = m.invoke(i, args);
}
invokeMethod("myLib", "sampleMethod", new Class[] {String.class, String.class},
new Object[]
{new String("Hello"), new String("World")});
如果我不知道Class[]
的计数和类型怎么办?如何动态管理?我将通过命令行或套接字获取参数和方法。所以我不知道接收哪种方法。
编辑 - 我试过以下的事情 -
Class[] css = new Class[10] ;
Object[] obj = new Object[10];
int argLn = params.length;
if (argLn > 1) {
func = params[0].trim();
for (int Idx = 1; Idx < argLn; ++Idx) {
arg.add(params[Idx]);
try {
Integer.parseInt((params[Idx]));
css[Idx-1] = String.class;
} catch (NumberFormatException ne) {
css[Idx-1] = int.class;
}
}
但结果是异常 - NoSuchMethodException
。
答案 0 :(得分:0)
这可以在Oracle教程网站上找到 - 参见"Obtaining Method Type Information"部分 - 关于反思的一般教程。
总结 - 致电后
Method m = c.getDeclaredMethod(myMethod, params);
你需要这样的东西:
Class<?>[] pType = m.getParameterTypes();
和/或(取决于您的方法是否可能在其参数类型中使用泛型)
Type[] gpType = m.getGenericParameterTypes();
返回数组的长度将为您提供参数的数量,成员的类或类型。您可以将pType
数组直接传递到invokeMethod()
方法