在我提问之前,让我发布一些代码。
public Object returnSomeResult() {
Object o = new Object();
Thread thread = new Thread(this);
thread.start();
return o;
}
public void run() {
// Modify o.
}
因此,从UI线程调用方法returnSomeResult
;这开始另一个线程。现在,我需要等到线程完成计算。同时,我不想阻止UI线程。如果我改变代码如下; UI线程被阻止。
public Object returnSomeResult() {
Object o = new Object();
Thread thread = new Thread(this);
thread.start();
try {
synchronized(this) {
wait();
}
catch(Exception e) {
}
return o;
}
public void run() {
// Modify o.
try {
synchronized(this) {
notify();
}
catch(Exception e) {
}
}
我确定因为我使用synchronized(this)
,导致UI线程被阻止。我如何在不阻止UI线程的情况下这样做呢?
答案 0 :(得分:3)
您可以使用swingworker
public SwingWorker<Object,Void> returnSomeResult() {
SwingWorker<Object,Void> w = new SwingWorker(){
protected Void doInBackground(){
Object o;
//compute o in background thread
return o;
}
protected void done(){
Object o=get();
//do something with o in the event thread
}
}
w.execute();
return w;//if you want to do something with it
}
您可以根据来电者
为自定义代码添加参数