【发布时间】:2018-07-01 07:49:49
【问题描述】:
我正在尝试实现一个桌面应用程序,该应用程序通过函数循环并每 1 秒在 UI 上设置一个文本字段。
但我要么得到 p>
org.eclipse.swt.SWTException: Invalid thread access
当我不使用显示器时
或者当我这样做时用户界面真的很慢
display.asyncExec(new Runnable() {
我的代码如下所示:
public void open() {
Display display = Display.getDefault();
shell = new Shell();
shell.setSize(486, 322);
shell.setText("SWT Application");
Button btnStartLoop = new Button(shell, SWT.NONE);
btnStartLoop.addMouseListener(new MouseAdapter() {
@Override
public void mouseDown(MouseEvent e) {
SwingUtilities.invokeLater(new Runnable() {
public void run() // updates displayArea
{
while (true) {
try {
text.setText("Text has been set");
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
});
}
});
btnStartLoop.setBounds(35, 30, 75, 25);
btnStartLoop.setText("Start Loop");
text = new Text(shell, SWT.BORDER);
text.setText("0");
text.setBounds(116, 32, 177, 21);
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
有什么办法可以克服吗?
【问题讨论】:
标签: java multithreading loops swt