在java中,一个类调用另外一个类的方法有两种实现方式:一种是实例化该类,调用实例化对象的方法;另一种是利用java的映射机制进行调用。第一种方法就不再进行解释,第二中方法使用如下:
public class Run {
public static void main(String[] args) {
String str = args[0] + "Hello World";
System.out.println(str);
}
}
import java.lang.reflect.Method;
public class JobRun {
public static void main(String[] args) {
String idStr = "YAya";
try {
Method method = Run.class.getMethod("main", String[].class);
method.invoke(Run.class.newInstance(), new Object[]{ new String[]{idStr}});
} catch (Exception e) {
e.printStackTrace();
}
}
}
|