Java - 单击按钮时执行某些操作,然后还原它

时间:2016-03-08 09:51:00

标签: java swing jbutton

好的,所以我正在做一个Java窗口(一个JFrame,它并不重要),我有一个按钮。我想要接近的是当单击按钮时,它会更改其文本,然后应用程序执行某些操作,当它完成时,按钮会返回其初始文本。 像这样......

JButton myButton = new JButton("Initial");
myButton.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        ((JButton) e.getSource()).setText("New");
        //Do other things
        //Do more other things
        ((JButton) e.getSource()).setText("Initial");
    }
});

这就是我到目前为止所尝试的,但我知道它没有按预期工作(所有代码都执行。我不是真正的专家,我正在做这些事情要学习,所以我不知道如果有办法做到这一点。

我已经在网上找到了解决方案,但我没有找到任何东西(也许我没有正确搜索),所以我希望有人可以帮助我!

PS:对不起,如果我的英语不完美,我就知道了。问我是否对这个问题不清楚。谢谢大家!

凯文。

编辑:该应用程序是数独求解器,因此需要一段时间 //做其他事情。这就是为什么我试图改变求解按钮文本(所以它是正在解决,当它完成时它说已解决)。< / p>

3 个答案:

答案 0 :(得分:2)

你的逻辑没有错!看看下面的例子:

public class MainFrame extends JFrame {
    public MainFrame() {
        setMinimumSize(new Dimension(200, 100));

        JButton myButton = new JButton("Initial");
        add(myButton);

        myButton.addActionListener(new ActionListener() {
            public void actionPerformed(final ActionEvent e) {
                final JButton triggerBtn = (JButton) e.getSource();
                final String originalValue = triggerBtn.getText();
                triggerBtn.setText("New");

                JOptionPane.showMessageDialog(null, "Speak softly and carry a big stick and you will go far.");

                triggerBtn.setText(originalValue);
            }
        });
    }

    public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                MainFrame mainFrame = new MainFrame();
                mainFrame.setVisible(true);
            }
        });
    }
}

如果你运行它,你会看到按钮被更改。如果您要将showMessageDialog行更改为Thread.sleep(10*1000),则会看到更改!这是因为您在调度程序线程和文本上运行事件,即使它已更改,也不允许在您的方法完成之前触发更改事件。

如果你正在做的工作是在同一个线程上,请考虑以下备选方案:

    myButton.addActionListener(new ActionListener() {
        public void actionPerformed(final ActionEvent e) {
            final JButton triggerBtn = (JButton) e.getSource();
            final String originalValue = triggerBtn.getText();
            triggerBtn.setText("New");

            SwingWorker<Void, Void> sw = new SwingWorker<Void, Void>() {
                protected Void doInBackground() throws Exception {
                    Thread.sleep(10*1000);
                    return null;
                }

                @Override
                protected void done() {
                    triggerBtn.setText(originalValue);
                }

            };
            sw.execute();
        }
    });

设置文本,并启动SwingWorker以异步方式运行作业。完成后,调度程序线程将更新文本,而不需要调度程序线程等待它完成(因此事件处理正确)。

请告诉我这是否适合您!

答案 1 :(得分:0)

您是否尝试过:

JButton myButton = new JButton("Initial");
myButton.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        myButton.setText("New");
        //Do other things
        //Do more other things
        myButton.setText("Initial");
    }
});

在您的示例中,您遗漏了actionPerformed并且您没有直接访问按钮(我不能说您示例中的e

答案 2 :(得分:0)

只需将当前文本保存在本地变量中,然后在执行完其他操作后将其设置回来。 您还应该确保它实际上是您单击的按钮,或者至少在投射之前检查JButton的实例。

final JButton myButton = new JButton("Initial");
myButton.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == myButton) {
            String initialText = myButton.getText();
            myButton.setText("New");
            // Do other things
            // Do more other things
            myButton.setText(initialText);
        }
    }
});

你也错过了你的actionPerformed方法,问题中的代码不会编译 - 我想你只是在编辑器中写了它。