有没有办法从 XUL 中的流程获取反馈?
我开始开发一个必须与外部应用程序交互的扩展。我可以按照此处所述运行外部应用程序,但我没有找到一种方法得到任何反馈。我获得的唯一信息是退出状态,而我需要读取应用程序输出,因为它会显示在终端(stdout)上。有办法做到这一点吗?
I'm starting to develop an extension which must interact with an external application. I can run the external application as described here, but I do not see a way to get any feedback. The only information I get is the exit status, while I need to read the application output, as it would appear on a terminal (stdout). Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行 nsiProcess 后,循环检查 isRunning 属性。当它停止运行时,检查 exitValue 属性。据我了解,这在不同平台上的表现可能有所不同,但我确实在 Windows 上成功使用了它。
After running the nsiProcess, loop while checking the isRunning attribute. When it stops running, check the exitValue attribute. As I understand it, this may behave differently on different platforms, but I did use it successfully on Windows.