Java开发中可以防止界面假死的刷新代码
今天小编就为大家分享一篇关于Java开发中可以防止界面假死的刷新代码,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧代码如下:
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();
}
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对CodeAE代码之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/li_canhui/article/details/7057212
http://www.zzvips.com/article/174500.html
页:
[1]