2013-02-07 53 views

回答

2

Groovy提供一種簡單的方式來執行的命令行的處理。喲可以寫命令行爲stringm並調用execute()方法。例如:

"groovy myscript.groovy -name nancy -project testproj".execute() 

More information in this link

在參數情況下用空格:

["groovy", 
"my script with spaces.groovy", 
"-name", 
"nancy", 
"-project", 
"testproj"].execute() 
+0

我有,因爲在我的道路 – Jabda

+0

由於某種原因,這個空間沒有開始工作之前,我問的問題用一個列表..但它有一次我重新啓動了Grails應用程序。謝謝 – Jabda