【问题标题】:ActionListener on JOptionPaneJOptionPane 上的 ActionListener
【发布时间】:2012-10-10 21:10:14
【问题描述】:

我正在关注有关如何创建自定义对话框的 Oracle 教程:http://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html

我有两个按钮:保存对象和删除对象,单击它们应该执行一段代码。不幸的是,我似乎无法将任何 ActionListener 添加到 JOptionPane 按钮,所以当它们被点击时,什么都没有发生。

谁能帮我告诉我该怎么做?到目前为止,这是我为对话框设置的类:

class InputDialogBox extends JDialog implements ActionListener, PropertyChangeListener {
    private String typedText = null;
    private JTextField textField;

    private JOptionPane optionPane;

    private String btnString1 = "Save Object";
    private String btnString2 = "Delete Object";

    /**
     * Returns null if the typed string was invalid;
     * otherwise, returns the string as the user entered it.
     */
    public String getValidatedText() {
        return typedText;
    }

    /** Creates the reusable dialog. */
    public InputDialogBox(Frame aFrame, int x, int y) {
        super(aFrame, true);

        setTitle("New Object");

        textField = new JTextField(10);

        //Create an array of the text and components to be displayed.
        String msgString1 = "Object label:";

        Object[] array = {msgString1, textField};

        //Create an array specifying the number of dialog buttons
        //and their text.
        Object[] options = {btnString1, btnString2};

        //Create the JOptionPane.
        optionPane = new JOptionPane(array,
                JOptionPane.PLAIN_MESSAGE,
                JOptionPane.YES_NO_OPTION,
                null,
                options,
                options[0]);


        setSize(new Dimension(300,250));
        setLocation(x, y);

        //Make this dialog display it.
        setContentPane(optionPane);
        setVisible(true);

        //Handle window closing correctly.
        setDefaultCloseOperation(DISPOSE_ON_CLOSE);

        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent we) {
                /*
                 * Instead of directly closing the window,
                 * we're going to change the JOptionPane's
                 * value property.
                 */
                optionPane.setValue(new Integer(
                        JOptionPane.CLOSED_OPTION));
            }
        });

        //Ensure the text field always gets the first focus.
        addComponentListener(new ComponentAdapter() {
            public void componentShown(ComponentEvent ce) {
                textField.requestFocusInWindow();
            }
        });

        //Register an event handler that puts the text into the option pane.
        textField.addActionListener(this);

        //Register an event handler that reacts to option pane state changes.
        optionPane.addPropertyChangeListener(this);
    }

    /** This method handles events for the text field. */
    public void actionPerformed(ActionEvent e) {
        optionPane.setValue(btnString1);
        System.out.println(e.getActionCommand());
    }

    /** This method reacts to state changes in the option pane. */
    public void propertyChange(PropertyChangeEvent e) {
        String prop = e.getPropertyName();

        if (isVisible()
         && (e.getSource() == optionPane)
         && (JOptionPane.VALUE_PROPERTY.equals(prop) ||
             JOptionPane.INPUT_VALUE_PROPERTY.equals(prop))) {
            Object value = optionPane.getValue();

            if (value == JOptionPane.UNINITIALIZED_VALUE) {
                //ignore reset
                return;
            }

            //Reset the JOptionPane's value.
            //If you don't do this, then if the user
            //presses the same button next time, no
            //property change event will be fired.
            optionPane.setValue(JOptionPane.UNINITIALIZED_VALUE);
            if (btnString1.equals(value)) {
                    typedText = textField.getText();
                String ucText = typedText.toUpperCase();
                if (ucText != null ) {
                    //we're done; clear and dismiss the dialog
                    clearAndHide();
                } else {
                    //text was invalid
                    textField.selectAll();
                    JOptionPane.showMessageDialog(
                                InputDialogBox.this,
                                    "Please enter a label",
                                    "Try again",
                                    JOptionPane.ERROR_MESSAGE);
                    typedText = null;
                    textField.requestFocusInWindow();
                }
            } else { //user closed dialog or clicked delete
               // Delete the object ...

                typedText = null;
                clearAndHide();
            }
        }
    }

    /** This method clears the dialog and hides it. */
    public void clearAndHide() {
        textField.setText(null);
        setVisible(false);
    }

【问题讨论】:

  • 我想说的是,我认为您可能错误地混合了该教程中的一些概念。在自定义 JDialog 中嵌入 JOptionPane 的想法对我来说似乎很奇怪。这里期望的结果是什么?按下按钮应该改变这个组件还是另一个?

标签: java swing jdialog joptionpane


【解决方案1】:

我认为您错过了JOptionPane 的重点。它具有显示自己的对话框的能力...

public class TestOptionPane02 {

    public static void main(String[] args) {
        new TestOptionPane02();
    }

    public TestOptionPane02() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException ex) {
                } catch (InstantiationException ex) {
                } catch (IllegalAccessException ex) {
                } catch (UnsupportedLookAndFeelException ex) {
                }

                JTextField textField = new JTextField(10);

                String btnString1 = "Save Object";
                String btnString2 = "Delete Object";

                //Create an array of the text and components to be displayed.
                String msgString1 = "Object label:";
                Object[] array = {msgString1, textField};
                //Create an array specifying the number of dialog buttons
                //and their text.
                Object[] options = {btnString1, btnString2};

                int result = JOptionPane.showOptionDialog(null, array, "", JOptionPane.YES_NO_OPTION, JOptionPane.PLAIN_MESSAGE, "New Object", options, options[0]);
                switch (result) {
                    case 0:
                        System.out.println("Save me");
                        break;
                    case 1:
                        System.out.println("Delete me");
                        break;
                }
            }
        });
    }
}

要手动完成,您将不得不做更多的工作。

首先,您将不得不监听面板的属性更改事件,寻找对JOptionPane.VALUE_PROPERTY 的更改并忽略JOptionPane.UNINITIALIZED_VALUE 的任何值...

一旦您检测到更改,您将需要处理掉您的对话框。

您需要提取通过JOptionPane#getValue 方法选择的值,该方法返回Object。您将不得不自己中断该值的含义...

不用说,JOptionPane.showXxxDialog 方法会为您完成所有这些...

现在,如果您担心必须完成对话框的所有设置,我会编写一个实用方法来完成它或获取所需的参数......但这只是我

更新

不知道为什么我没有早点想到......

不要传递String 的数组作为选项参数,而是传递JButton 的数组。这样你就可以附加你自己的监听器了。

options - 表示用户可能选择的对象数组 可以使; 如果对象是组件,它们会被正确渲染; 非字符串对象使用其 toString 方法呈现;如果这 参数为null,选项由外观决定

【讨论】:

【解决方案2】:

为了您似乎想要的灵活性,您应该让您的类扩展 JFrame 而不是 JDialog。然后将您的按钮声明为 JButtons: JButton saveButton = new JButton("保存");并向此按钮添加一个 actionListnener: saveButton.addActionListener(); 您可以将类名放在 saveButton 的括号内,也可以简单地将关键字“this”传递给它,并声明一个名为 actionPerformed 的方法来封装按下按钮时应执行的代码。 有关更多详细信息的 JButton 教程,请参阅此链接: http://docs.oracle.com/javase/tutorial/uiswing/events/actionlistener.html

【讨论】:

  • JFrame 不提供模态,无论如何,我们应该避免(在可能的情况下)从顶级容器扩展
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2020-11-01
  • 1970-01-01
  • 1970-01-01
  • 2014-11-22
  • 2011-02-10
  • 1970-01-01
  • 2013-02-14
相关资源
最近更新 更多