Groovy怎么调用本地命令。 比如我要在Groovy脚本中调用cmd命令。

oracoo 2009-12-23
Groovy怎么调用本地命令。 比如我要在Groovy脚本中调用cmd命令。
atian25 2009-12-23
Process p = "cmd /c dir".execute()
println "${p.text}"
peigen 2010-01-06
linux版:

Process p="ls /home/peigen".execute()
println "${p.text}"

agile_boy 2010-01-08
此外还有Groovy Shell模块,对调用外部命令提供更好一点的封装。
http://groovy.codehaus.org/Groosh
peigen 2010-01-13
LS...这个很有意思...
GRACEACT 2012-03-30
输出的内容,出现乱码是什么情况啊?
Global site tag (gtag.js) - Google Analytics