我在mac上运行GroovyConsole(启动我只是从命令行执行groovyConsole)。我是新手,所以不知道如何导入所需的库(罐子)。例如,假设我的groovy脚本需要apache commons httpclient。
打开groovyConsole时是否需要在命令行中指定jar名称?或者我应该使用Grapes吗?如果是后者,我不确定Grab命令的确切语法。我尝试了以下,它没有用......
<html>
<head>
<style type="text/css">
table { width: 100%; }
.a { background-color: red; }
table > tbody > tr:first-child > td.a:first-child {
border-top-left-radius: 10px;
}
</style>
</head>
<body>
<table>
<tr><td colspan=2>title</td></tr>
<tr><td class=a>sadsf</td><td class=a>adsfs</td></tr>
<tr><td class=b>sadsf</td><td class=b>adsfs</td></tr>
<tr><td class=a>sadsf</td><td class=a>adsfs</td></tr>
<tr><td class=a>sadsf</td><td class=a>adsfs</td></tr>
</table>
</body>
</html>
非常感谢任何帮助。
答案 0 :(得分:2)
你可以做到
@Grab('org.apache:commons-httpclient:3.1')
或者您可以在groovy控制台本身的菜单中添加jar