从GroovyConsole执行shell命令时出错

时间:2016-03-05 05:11:41

标签: groovy createprocess groovy-console

我为windows下载了apache-groovy-2.4.6,当我尝试执行" dir" .execute()时,我从GroovyConsole下载了

java.io.IOException: Cannot run program "dir": CreateProcess error=2, The system cannot find the file specified

你能说出什么问题吗?

1 个答案:

答案 0 :(得分:1)

Windows没有“dir”作为可运行程序。它是cmd中的built-in function

尝试

println  "cmd /c dir   c:\\".execute().text