是否可以使用文本文件中的字符串作为Java代码

时间:2018-01-17 13:10:21

标签: java string

让我说我写了#34; doSomthing()"在文本文件中。有没有人知道是否有可能让文本doSomthing()而不必wirite:

if(txt.equals("doSomthing()"){ 
    doSomthing();
}

1 个答案:

答案 0 :(得分:0)

答案确实在反思章节,而且很直接。对于那个StephaneM而言:

Method method = MyClass.class.getMethod(“doSometing”,String.Object); Object returnValue = method.invoke(null,“parameter-value1”);