作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在 eclipse 中开发的 groovy 项目,其中有一个包(hello)和一个 groovy 类(helloWorld.groovy)。我已经导出了 jar(比如 HelloWorld.jar)。我正在尝试通过以下方式在 unix 中执行此 jar:-
groovy -cp /tmp/HelloWorld.jar hello.helloWorld
Caught: java.io.FileNotFoundException: /tmp/hello.helloWorld (/tmp/hello.helloWorld)
java.io.FileNotFoundException: /tmp/hello.helloWorld (/tmp/hello.helloWorld)
最佳答案
一个类只是一个声明,除非它包含静态方法。
您可以创建类的实例并从命令行脚本调用方法。
HelloWorld.groovy
package hello
class HelloWorld {
def main() { println "Hello World!" }
}
groovyc HelloWorld.groovy
jar -cf HelloWorld.jar hello
groovy -cp HelloWorld.jar -e 'new hello.HelloWorld().main()'
package hello
class HelloWorld {
static main() { println "Hello World!" }
}
groovyc HelloWorld.groovy
jar -cf HelloWorld.jar hello
groovy -cp HelloWorld.jar -e 'hello.HelloWorld.main()'
关于unix - 如何在 unix-ERROR 中执行 groovy jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18903706/
我是一名优秀的程序员,十分优秀!