public String callService(DflCallServiceParam param)
throws InstantiationException, IllegalAccessException, ClassNotFoundException, InvocationTargetException, RemoteException, NoSuchMethodException {
UiServiceImpl obj = new UiServiceImpl();
String result = "";
int mc;
Class oClass = obj.getClass();
Method[] methods = oClass.getDeclaredMethods();
for(int i=0; i < methods.length; i++)
{
if(param.getMid().equals(methods[i].getName()));
{
mc = i;
}
}
Method method = oClass.getDeclaredMethod(param.getMid(), new Class[]{new String().getClass()});
Ret ret = (Ret)method.invoke(obj, new Object[]{new String("aaa")});
return result;
}
'자바·JSP' 카테고리의 다른 글
Eclipse 단축키 (0) | 2012.01.09 |
---|---|
Java 7의 새로운 특징 : Java7에서의 중요한 변화들과 업데이트된 항목 (0) | 2011.11.14 |
IPv6 (0:0:0:0:0:0:0:1) (0) | 2011.05.18 |
url-pattern 3가지 (1) | 2011.05.18 |
SVN - Text Decorations (파일명 뒤에 원하는 정보 붙이기) (0) | 2011.05.16 |