3 回答

TA貢獻2036條經(jīng)驗 獲得超8個贊
好吧,我自己解決了;
def sout = new StringBuilder(), serr = new StringBuilder()
def proc = 'ls /badDir'.execute()
proc.consumeProcessOutput(sout, serr)
proc.waitForOrKill(1000)
println "out> $sout err> $serr"
顯示:
out> err> ls: cannot access /badDir: No such file or directory

TA貢獻1936條經(jīng)驗 獲得超7個贊
"ls".execute()返回一個Process對象,這就是為什么"ls".execute().text起作用。您應(yīng)該能夠只讀取錯誤流,以確定是否存在任何錯誤。
上還有一個額外的方法,Process可讓您傳遞StringBuffer來檢索文本:consumeProcessErrorStream(StringBuffer error)。
例:
def proc = "ls".execute()
def b = new StringBuffer()
proc.consumeProcessErrorStream(b)
println proc.text
println b.toString()
- 3 回答
- 0 關(guān)注
- 2207 瀏覽
添加回答
舉報