public class Invoked {
public static void main(String[] args) {
if (args.length != 2) {
System.err.PRintln("Usage: java Invoked name sex ");
System.exit(1);
}
System.out.println("Hello, I come from OutClassFile!");
System.out.println("my name is "+args[0]);
System.out.println("my sex is "+args[1]);
}
}
运行上述类文件的主程序(Invoker.java)一般具有如下形式:
import java.lang.reflect.*;
public class Invoker {
public static void main(String[] args) {
//args[0]存储被执行的外部类名,本例中args[0]=“Invoked”
if (args.length != 1) {
System.err.println("Usage: java Invoker ");
System.exit(1);
}
Class[] argTypes = new Class[1];
argTypes[0] = String[].class;
try {
Method mainMethod = Class.forName(args[0]).getDeclaredMethod("main",argTypes);
Object[] argListForInvokedMain = new Object[1];
//被调用的main()方法的参数个数=1
argListForInvokedMain[0] = new String[2];
//被调用的main()方法的参数是一个长度为2的String数组
String argsToinvoked[]={"WangShuangLin","Man"};
ArgListForInvokedMain[0]= argsToinvoked;
//设置传递给被调用的外部类的main()方法的参数
mainMethod.invoke(null, argListForInvokedMain);
//inkoke(Object obj, Object[] args)是调用方法;
//其中obj是方法所在的对象实例; 但因为这里的main()是静态方法,
//所以无须实例化,填上null即可;
//args是传递给该方法的参数。
}
catch (ClassNotFoundException ex) {
System.err.println("Class"+args[0]+"not found in classpath.");
}
catch (NoSUChMethodException ex) {
System.err.println("Class "+args[0]+" does not define public static void main(String[])");
}
catch (InvocationTargetException ex) {
System.err.println("Exception while executing "+args[0]+ ":"+ex.getTargetException());
}
catch (IllegalaccessException ex) {
System.err.println("main(String[]) in class "+args[0] + "is not public");
}
}
}
用如下的命令行运行主程序:java Invoker Invoked。新闻热点
疑难解答