如何在BankingBean类中调用AM中的方法

            String  DeviceId=row.getAttribute("DeviceId")==null?"":row.getAttribute("DeviceId").toString();
             OperationBinding opt=  this.findOperation("getDownLoadParamersValue");
             Map map=opt.getParamsMap();
             map.put("DeviceId", DeviceId);

             String str=(String)opt.execute();


a>.getDownLoadParamersValue为AM中的方法名。

b>.DeviceId为getDownLoadParamersValue方法中的参数

c>.str为返回值。


你可能感兴趣的:(如何在BankingBean类中调用AM中的方法)