是否可以在带有进度监视器的 JFace 向导中运行批处理文件?

发布于 2024-12-02 09:19:42 字数 167 浏览 0 评论 0原文

我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你拒绝所有暧昧 2024-12-09 09:19:42

您需要能够以某种方式衡量脚本的进度。
例如,如果脚本可以将其进度记录到文件中,那么应用程序中的线程可以读取它并传递到进度监视器(通过调用 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))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文