解决Job中,进度条后台运行,恢复问题

本文展示了一个在Eclipse环境中使用进度监视器的例子。通过一个具体的工作任务循环,演示了如何利用Eclipse提供的进度监视器组件来跟踪和显示任务执行进度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


Job job = new Job("ttt") {
@Override
protected IStatus run(IProgressMonitor monitor) {
try {
monitor.beginTask("任务(10个)", 10);
for (int i = 0; i < 10; i++) {
if (monitor.isCanceled()) {
return Status.CANCEL_STATUS;
}
monitor.subTask("第" + (i+1) + "个任务。");
Thread.sleep(1000);
monitor.worked(1);
if(i != 9){
monitor.subTask("第" + (i+2) + "个任务。");
}
}
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
if (isProgressFinish) {
monitor.done();
}
}
return Status.OK_STATUS;
}
};
job.setUser(true);//是否需要弹出进度条
job.schedule();


Eclipse gives you the Progress View and the Status Bar, both of which you
can use.

All the code and data for the view is in org.eclipse.ui.workbench. For my
app we added it as an extension in our plugin.xml:

<extension point="org.eclipse.ui.views">
<view
class="org.eclipse.ui.ExtensionFactory:progressView"
id="org.eclipse.ui.views.ProgressView"
name="Progress View"/>
</extension>


In your workbench window advisor subclass, add this line to preWindowOpen():

configurer.setShowProgressIndicator(true);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值