执行外部命令并从 Jython 2.1 读取 stderr/stdout
我通过调用 os.system() 从 Jython 2.1 执行外部命令。这可行,但我无法获取外部程序正在写入的任何错误消息。
Jython 2.1 太旧,无法使用 subprocess
并且 Jython 2.1 中似乎不存在 os.popen
。
如何在 Jython 脚本中捕获外部程序的 stderr 和 stdout?
I'm executing an external command from Jython 2.1 by calling os.system()
. This works, but I can't get to any error messages the external program is writing.
Jython 2.1 is too old to use subprocess
and os.popen
does not seem to exist in Jython 2.1.
How can I capture stderr and stdout of my external program inside my Jython script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未使用 Jython 编写过代码,但据我所知,您可以使用 Jython 代码中的任何 java 类。如果我的建议很愚蠢,我很抱歉,但为什么不从 Jython 脚本中调用 java 的 ProcessBuilder 呢? ProcessBuilder有这个功能。
I have never coded in Jython but as far as I know you can use any java class from Jython code. I am sorry if my suggestion is stupid but why not to call java's ProcessBuilder from your Jython script? ProcessBuilder has this functionality.