Java動態調用方法,主要用到java反射機制,Class和Method這些類。
<code>//被調用的方法名
String methodName="testmethod";
//用於傳遞參數的class數組。
Class[] cargs = new Class[1];
cargs[0]=mId.getClass();
//testService.getClass():得到testService的class對象。
Method method = testService.getClass().getMethod(methodName,cargs );
Object[] inArgs = new Object[1];
inArgs[0]=mId;
//invoke(testService,new Object[]{})調用方法,第一個參數是要調用這個方法的對象,如果方法是static的,這個參數可以為null 。
method.invoke(testService, inArgs);/<code>
閱讀更多 笑在春風 的文章