如何使用Commons Exec将命令的输出捕获为字符串?

如何使用Commons Exec将命令的输出捕获为字符串?,第1张

如何使用Commons Exec将命令的输出捕获字符串

他是我发现的东西:

import java.io.ByteArrayOutputStream;import org.apache.commons.exec.CommandLine;import org.apache.commons.exec.DefaultExecutor;import org.apache.commons.exec.Executor;import org.apache.commons.exec.PumpStreamHandler;public String execToString(String command) throws Exception {    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();    CommandLine commandline = CommandLine.parse(command);    DefaultExecutor exec = new DefaultExecutor();    PumpStreamHandler streamHandler = new PumpStreamHandler(outputStream);    exec.setStreamHandler(streamHandler);    exec.execute(commandline);    return(outputStream.toString());}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存