groovy – process.text的错误等价物?

You can get the entire output stream使用.text:

def process = "ls -l".execute()
println "Found text ${process.text}"

是否有一个简洁的等价物来获取错误流?

解决方法

你可以使用waitForProcessOutput,它有两个Appendables( docs here)

def process = "ls -l".execute()
def (output,error) = new StringWriter().with { o -> // For the output
  new StringWriter().with { e ->                     // For the error stream
    process.waitForProcessOutput( o,e )
    [ o,e ]*.toString()                             // Return them both
  }
}
// And print them out...
println "OUT: $output"
println "ERR: $error"

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...