博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Swt/Jface进度条 (转)
阅读量:6694 次
发布时间:2019-06-25

本文共 2461 字,大约阅读时间需要 8 分钟。

处理长时间的任务的时候常需要进度条显示,有几种实现方式

1,普通的进度条

None.gif
import
 java.lang.reflect.InvocationTargetException;
None.gif
None.gif
import
 org.eclipse.core.runtime.IProgressMonitor;
None.gif
import
 org.eclipse.jface.dialogs.ProgressMonitorDialog;
None.gif
import
 org.eclipse.jface.operation.IRunnableWithProgress;
None.gif
import
 org.eclipse.swt.widgets.Display;
None.gif
import
 org.eclipse.swt.widgets.Shell;
None.gif
None.gif
ExpandedBlockStart.gifContractedBlock.gif
public
 
class
 TestProgress 
dot.gif
{
InBlock.gif    
static boolean stopflg = false;
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** *//**
InBlock.gif     * Launch the application
InBlock.gif     * 
@param args
ExpandedSubBlockEnd.gif     
*/
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public static void main(String[] args) throws Exceptiondot.gif{
InBlock.gif        
final Display display = Display.getDefault();
InBlock.gif        
final Shell shell = new Shell();
InBlock.gif        shell.setSize(
500375);
InBlock.gif        shell.setText(
"SWT Application");
InBlock.gif        
InBlock.gif        
//
ExpandedSubBlockStart.gifContractedSubBlock.gif
        IRunnableWithProgress runnable = new IRunnableWithProgress()dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException dot.gif{
InBlock.gif                monitor.beginTask(
"generate"30);
ExpandedSubBlockStart.gifContractedSubBlock.gif                
for(int i=0;i<100;i++)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
if(monitor.isCanceled())dot.gif{
InBlock.gif                        
return;
ExpandedSubBlockEnd.gif                    }
InBlock.gif                    monitor.worked(
1);
InBlock.gif                    Thread.sleep(
50);
ExpandedSubBlockEnd.gif                }
InBlock.gif                
InBlock.gif                monitor.done();
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
;
InBlock.gif        
new ProgressMonitorDialog(shell).run(truetrue, runnable);
InBlock.gif        shell.open();
InBlock.gif        shell.layout();
ExpandedSubBlockStart.gifContractedSubBlock.gif        
while (!shell.isDisposed()) dot.gif{
InBlock.gif            
if (!display.readAndDispatch())
InBlock.gif                display.sleep();
ExpandedSubBlockEnd.gif        }
ExpandedSubBlockEnd.gif    }
InBlock.gif
ExpandedBlockEnd.gif}
None.gif

2,反复循环的进度条

None.gif
import
 java.lang.reflect.InvocationTargetException;
None.gif
None.gif
import
 org.eclipse.core.runtime.IProgressMonitor;
None.gif
import
 org.eclipse.jface.dialogs.ProgressMonitorDialog;
None.gif
import
 org.eclipse.jface.operation.IRunnableWithProgress;
None.gif
import
 org.eclipse.swt.widgets.Display;
None.gif
import
 org.eclipse.swt.widgets.Shell;
None.gif
None.gif
ExpandedBlockStart.gifContractedBlock.gif
public
 
class
 TestProgress 
dot.gif
{
InBlock.gif    
static boolean stopflg = false;
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** *//**
InBlock.gif     * Launch the application
InBlock.gif     * 
@param args
ExpandedSubBlockEnd.gif     
*/
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public static void main(String[] args) throws Exceptiondot.gif{
InBlock.gif        
final Display display = Display.getDefault();
InBlock.gif        
final Shell shell = new Shell();
InBlock.gif        shell.setSize(
500375);
InBlock.gif        shell.setText(
"SWT Application");
InBlock.gif        
InBlock.gif        
//
ExpandedSubBlockStart.gifContractedSubBlock.gif
        IRunnableWithProgress runnable = new IRunnableWithProgress()dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException dot.gif{
InBlock.gif                monitor.beginTask(
"generate"30);
InBlock.gif                
int i=0;
ExpandedSubBlockStart.gifContractedSubBlock.gif                
while(true)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
if(stopflg)dot.gif{
InBlock.gif                        
break;
ExpandedSubBlockEnd.gif                    }
InBlock.gif                    i
++;
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
if(i==30)dot.gif{
InBlock.gif                        i
=0;
InBlock.gif                        monitor.beginTask(
"generate"30);
ExpandedSubBlockEnd.gif                    }
InBlock.gif                    monitor.worked(
1);
InBlock.gif                    Thread.sleep(
100);
ExpandedSubBlockEnd.gif                }
InBlock.gif                monitor.done();
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
;
InBlock.gif        
new ProgressMonitorDialog(shell).run(truetrue, runnable);
InBlock.gif        shell.open();
InBlock.gif        shell.layout();
ExpandedSubBlockStart.gifContractedSubBlock.gif        
while (!shell.isDisposed()) dot.gif{
InBlock.gif            
if (!display.readAndDispatch())
InBlock.gif                display.sleep();
ExpandedSubBlockEnd.gif        }
ExpandedSubBlockEnd.gif    }
InBlock.gif
ExpandedBlockEnd.gif}
None.gif

3,rcp中后台任务的进度条

使用Job建立后台任务,只需要设置job.setUser(true)进度条就出现了,和上边一样,进度条需要自己来控制进度。如果做一个cool的进度条,就看你如何让进度条显示出实际的任务进程。

转载于:https://www.cnblogs.com/finalstar/archive/2011/10/26/2224658.html

你可能感兴趣的文章
黑马程序员---java基础----------------- File类
查看>>
[A] 1046 Shortest Distance
查看>>
Django支付宝自动转账功能(一)
查看>>
RxJava如何结合观察者与链式处理
查看>>
浮点型
查看>>
第七周项目2-体重检测系统
查看>>
[转]mmap和madvise的使用
查看>>
WPF入门教程系列四——Dispatcher介绍
查看>>
easyui 跳转页面语句
查看>>
「小程序JAVA实战」微信小程序简介(一)
查看>>
81.node.js前端html时页面格式错乱解决办法
查看>>
visio2010求交操作
查看>>
this与super关键字
查看>>
Word 2010 插入其他文件的方法
查看>>
iOS 动画篇 (三) CADisplayLink与CoreGraphics实现动画
查看>>
BZOJ4766: 文艺计算姬(Prufer序列)
查看>>
CSS选择器
查看>>
pip3 Fatal error in launcher: Unable to create process using '"' [转]
查看>>
关于linux的用户
查看>>
ECMAScript 5 —— 单体内置对象之Global对象
查看>>