是否可以在带有进度监视器的 JFace 向导中运行批处理文件?
我想从 JFace 向导中运行批处理脚本,甚至想在向导中显示该脚本的进度监视器。
为什么我想要这个,因为当我在 java 代码中运行批处理脚本时,对批处理脚本执行的控制会从 java 代码中丢失。这就是为什么我在想是否可以在向导中运行它,以便我拥有控制权。
问候,
阿南德
I want to run a batch script from within my JFace wizard, and even I want to show the progress monitor for that within the wizard.
Why I want this because, when I run a batch script within my java code, the control on batch script execution gets lost from java code. That's why I'm thinking whether is it possible to run this within the wizard so that I should have the control.
Reagrds,
Anand
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要能够以某种方式衡量脚本的进度。
例如,如果脚本可以将其进度记录到文件中,那么应用程序中的线程可以读取它并传递到进度监视器(通过调用 IProgressMonitor#worked(valueFromFile))
You need to be able to measure the script's progress somehow.
For example, if the script could log its progress to the file, then a thread in your application could read it and pass to the progress monitor (by calling IProgressMonitor#worked(valueFromFile))