本帖最后由 吴亨 于 2012-2-9 19:49 编辑
- package com.baidu.exam;
- import java.lang.reflect.Method;
- class Point {
- public static void main(String[]args)throws Exception
- {
- String name = args[0];
- Method mainMethod = Class.forName(name).getMethod("main", String[].class);
- mainMethod.invoke(null, (Object)new String[]{"eAWDR","rgsfe","gs"});
- }
-
-
- }
- class Hello
- {
- public static void main(String[]args) {
- for(String str:args){
- System.out.println(str);
- }
-
- }
- }
复制代码 在dos里面我用 "java Point com.baidu.exam.Hello"命令,老是执行出错,求指教。 |
|