作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试通过 apache-commons-exec 捕获 python 进程输出。但看起来它不会打印输出,只有在 python 进程完成后才会显示输出。
这是我的java代码
CommandLine cmd = CommandLine.parse("/Users/jzhang/anaconda/bin/python");
cmd.addArgument("/Users/jzhang/a.py");
DefaultExecutor executor = new DefaultExecutor();
ExecuteWatchdog watchDog = new ExecuteWatchdog(ExecuteWatchdog.INFINITE_TIMEOUT);
executor.setWatchdog(watchDog);
executor.execute(cmd);
这是我想要执行的python代码(我只在python进程退出后获得输出,但我想要的是实时获得输出)
for i in range(1,10):
print(i)
import time
time.sleep(10)
最佳答案
我找到了答案,我应该使用 setlush to true 。例如
print('hello world', flush=True)
关于java - PumpStreamHandler可以实时捕获流程输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45433206/
我正在尝试使用 Apache Commons exec 解决与命令行进程的交互。我被以下代码困住了: ByteArrayOutputStream out = new ByteArrayOutputSt
在 TestNG 中使用 Log 和 Reporter Log 时出现此错误。知道这个错误背后的原因吗? 任何帮助都会有帮助。 java.lang.NoSuchMethodError: org.apa
我是一名优秀的程序员,十分优秀!