使用Java在Linux中执行命令并获取输出

使用Java在Linux中执行命令并获取输出,第1张

使用Java在Linux中执行命令并获取输出

您不能使用进行管道或重定向

String.execute()
。这在Java中不起作用,因此在Groovy中也不起作用…

您可以

Process.pipeTo
与Groovy一起使用以简化 *** 作:

Process proca = 'uname -a'.execute()Process procb = 'awk {print}'.execute()(proca | procb).text

更通用的版本可能是:

String process = 'uname -a | awk {print}'// Split the string into sections based on |// And pipe the results togetherProcess result = process.tokenize( '|' ).inject( null ) { p, c ->  if( p )    p | c.execute()  else    c.execute()}// Print out the output and error streamsresult.waitForProcessOutput( System.out, System.out )


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5561613.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存