gpt4 book ai didi

java - 向 RCP 中的作业添加进度条

转载 作者:行者123 更新时间:2023-12-01 11:36:45 24 4
gpt4 key购买 nike

我在 RCp 应用程序中有一项耗时的工作,其中我读取一个大数据库并将其保存在文件中。我在单独的线程中运行此作业,以便我的应用程序的 UI 不会被阻止,但我不知道如何向此任务添加进度条

我的代码:

public class MirrorFeatureModel extends Job {

protected class MutexRule implements ISchedulingRule {
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;
}
public boolean contains(ISchedulingRule rule) {
return rule == this;
}
}

private String source;
private String template;
private String target;

public MirrorFeatureModel(String name) {
super(name);
}

public MirrorFeatureModel(String source, String template, String target){
super("Mirroring SWA Model");
this.source = source;
this.template = template;
this.target = target;
}

public void run() {
this.schedule();
}


@Override
protected IStatus run(IProgressMonitor monitor) {

ILog logView = Activator.getDefault().getLog();
String connectionString = this.source;
String emptyEAP = this.template;
String target = this.target;

try{

monitor.beginTask("Copying swa model to local", 1);
new Mirror(connectionString, emptyEAP,target).run();
monitor.worked(1);

}catch(final Exception e) {

logView.log(new Status(Status.ERROR, null , "Failed to create local SAM instance", e));


Display.getDefault().asyncExec(new Runnable() {

@Override
public void run() {
MessageDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(), "Failed to create local SAM instance", e.getMessage());
}

});
return Status.CANCEL_STATUS;
}

return Status.OK_STATUS;
}


}

Mirror.run()方法

 public void run(IProgressMonitor monitor) {

try{

if (monitor != null)
monitor.subTask("Creating directory for eap file");

File tempTarget=File.createTempFile("eap-mirror", "eap");
if (monitor != null)
monitor.worked(1);

try {

if (monitor != null)
monitor.subTask("Establising connection");

this.source=DriverManager.getConnection(com.intel.imc.swa.easql.EaDbStringParser.eaDbStringToJdbc(sourceString));
this.source.setReadOnly(true);

if(monitor != null)
monitor.worked(1);

FileUtils.copyFile(new File(templateFileString), tempTarget);

if (monitor != null)
monitor.subTask("Opening database");

this.target=Database.open(tempTarget,false,false);

if(monitor != null)
monitor.worked(1);

if (monitor != null)
monitor.subTask("Mirroring tables");

Collection<String> tables=selectTables(source);
long time=System.currentTimeMillis();
for (String tableName : tables) {
long tTime=System.currentTimeMillis();
Table table=target.getTable(tableName);
System.out.print("Mirroring table "+tableName+"...");
table.setOverrideAutonumber(true);
copyTable(table, source, target);
System.out.println(" took "+(System.currentTimeMillis()-tTime));
}

System.out.println("Done. Overall time: "+(System.currentTimeMillis()-time));
if(monitor != null)
monitor.worked(1);

} catch (SQLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

如何在此类中添加进度条来显示这项工作的进度

谢谢

最佳答案

通常作业会在进度 View 和主窗口底部的状态行中显示进度指示器。

如果您在 schedule() 之前调用 setUser(true),那么当作业运行超过几秒时,作业将显示一个弹出进度对话框。

要显示作业进度,您必须在 beginTask 调用中指定工作总量

monitor.beginTask("...", total work);

然后每次完成部分工作时都必须调用 monitor.worked(xxx)

关于java - 向 RCP 中的作业添加进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29897022/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com