如何在xul应用程序中运行.exe文件?
我想用 xul 制作一个应用程序,但一些功能和逻辑在稳定的 exe 文件中。 使用 xulapp 运行 exe 来执行某些操作并将结果提供给 xul 应用程序, 我该怎么办,谢谢
i want make a app with xul but some functions and logic in a stable exe file.
run the exe with xulapp that to do something and get the result given to the xul application,
how should i do ,thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 nsIProcess 调用另一个应用程序,但您无法轻松获得除退出值之外的结果。人们正在尝试获得一个合适的 IPC 组件,该组件允许您写入进程 stdin 并从其 stdout 和 stderr 读取,但这在 XULRunner 版本中尚不可用。
You can invoke another application using nsIProcess, but you can't easily obtain a result, except for the exit value. Attempts are being made to get a proper IPC component that will allow you to write to the process stdin and read from its stdout and stderr but this is not yet available in releases of XULRunner.