String action = "TestAction"; //ActionÃû Object args = null; //²ÎÊý System.out.println(session.getRemoteObject(action, args)); //·ÃÎÊAction,²¢µÃµ½·µ»Ø½á¹û-Hello World
action = "AddAction"; //µ÷ÓÃAddAction Integer[] ints = new Integer[]{new Integer(1),new Integer(2)}; System.out.println(session.getRemoteObject(action, ints )); //Ó¦¸Ã·µ»Ø3 |