我有一个groovy脚本,调用另一个groovy脚本。现在我想从被调用的脚本返回一些东西。
我的代码是:
public void readFromCSV(){
//ChangeUserPassword pe = new ChangeUserPassword();
//pe.changePassword(host,user,oldPwd,newPwd);
String []args = [host,user,oldPwd,newPwd];
Object ret = run(new File("ChangeUserPassword.groovy"),args);
Global.log.info("----> "+ret);
}
我想将一些值从ChangeUserPassword.groovy脚本返回到主脚本。运行返回后,“ret”对象保持为null。那么,我如何从被调用的脚本返回一些值到主脚本。是否可以这样做?