Java反思:“java.lang.NoSuchMethodException”

时间:2013-11-09 15:12:16

标签: java class reflection methods

我正在尝试使用反射从另一个类获取该方法,但由于某种原因,它继续给我一个没有这样的方法异常。这些是我使用的类:

ScriptTable类:

for(Class<?> script: Scripts) {
        System.out.println(script.getName());
        try {
            Method c = script.getMethod("scriptInfo()", script);
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

DummyScript类

    public String[] scriptInfo() {
    String[] ScriptInfo = {"DummyScript", "Chris", "Does nothing atm"};
    return ScriptInfo;
}

1 个答案:

答案 0 :(得分:2)

这是你的问题:

script.getMethod("scriptInfo()", script);

将其更改为:

script.getMethod("scriptInfo");

并看看为什么:

http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html#getMethod%28java.lang.String,%20java.lang.Class...%29