2
.addActionListener(new ActionListener(){
        public void actionPerformed (ActionEvent e){
            try{
                ta.append("Searching Initiated at: "+datetime()+"\n");
                gui.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                task.execute();
                javax.swing.SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        gui.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
                    }
                });
                //Enable the next stage in the YD process and disable the previously executed functions
                clusAn.setEnabled(true);
                open.setEnabled(false);
                statCl.setEnabled(false);
            }catch (Exception IOE){
                }
        }
    });

嗨,我设计的这个应用程序的最后阶段有点痛苦。

基本上,当用户单击按钮时,我希望光标变为“等待”版本,然后一旦后台进程(task.execute)完成,光标就会恢复正常。

task.execute 不在同一个类中,所以我不能直接调用“gui.setCursor”,因为它不能将 GUI 识别为变量。

不知道该怎么做,所以任何建议都会很棒

感谢:D

4

3 回答 3

5

修改任务的类,使其将您的 GUI 作为构造函数参数。这样,当任务完成时,它可以调用该setCursor方法。

你应该使用 SwingWorker 来做这种事情。

编辑 :

这是任务的代码应该是这样的:

public class MySwingWorker extends SwingWorker<Void, Void> {

    /**
     * The frame which must have the default cursor set 
     * at the end of the background task
     */
    private JFrame gui;

    public MySwingWorker(JFrame gui) {
        this.gui = gui;
    }

    // ...

    @Override
    protected void done() {
        // the done method is called in the EDT. 
        // No need for SwingUtilities.invokeLater here
        gui.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    }
}
于 2011-02-23T14:01:58.367 回答
1

当您创建任务时,将其传递给具有某种“已完成”方法的接口。让您的任务在完成时调用该方法,然后让您的 gui 类实现该接口并更改该方法调用上的光标。

于 2011-02-23T14:00:20.817 回答
0

也许你可以尝试使 gui 最​​终。

final JComponent guiFinal = gui;
javax.swing.SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        guiFinal .setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
                    }
                });
于 2011-03-05T04:35:29.143 回答