使用GroovyShell解析类

时间:2014-06-06 21:09:09

标签: groovy groovyshell

我有一个groovy脚本,需要在外部groovy脚本中的类中运行一个方法。 我知道如何在外部groovy脚本中运行方法:

new GroovyShell().parse( new File( 'foo.groovy' ) ).with {
    method()
  }

但是如果方法在一个类中呢?我试过了,但它给了我一个错误。

new GroovyShell().parse( new File( 'foo.groovy' ) ).with {
    theclass.method()
  }

1 个答案:

答案 0 :(得分:0)

您可以使用Java反射创建位于另一个脚本中的Class的新实例:

File sourceFile = new File("D:\\anoutherScript.groovy")
//here you have to update your classloader with external script
getClass().getClassLoader().addURL(sourceFile.toURI().toURL())
GroovyObject obj = Class.forName("ClassInAnotherObject").newInstance()
obj.doSth()

外部文件中的脚本就是这样:

class ClassInAnotherObject{
    def doSth(){
    }
}

但脚本文件中可能有更多类,还有一些指令和方法调用。就像普通的groovy脚本一样。