欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java开发中可以防止界面假死的刷新代码

程序员文章站 2024-02-25 09:02:58
代码如下: try { // 创建一个线程 thread thread = new thread() { public void run() {...

代码如下:

try {
  // 创建一个线程
  thread thread = new thread() {
  public void run() {
   int i = 0;
   while(true){
   final long start = system.currenttimemillis();
   try {
    thread.sleep(1);
   } catch (interruptedexception e) {
    // todo auto-generated catch block
    e.printstacktrace();
   }
   final int a = i;
   if (!display.getdefault().isdisposed()) {
    runnable runnable = new runnable() {
    public void run() {
     processmodel.setprocessname(start + "---" + a);
    }
    };
    display.getdefault().syncexec(runnable);
   }
   i++;
   }
  }
  };
  thread.start();
 } catch (exception e) {
  e.printstacktrace();
 }

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接