Swing JOptionPane類

2019-10-16 22:10:44

JOptionPane類是一個元件,它提供標準方法來彈出值的標準對話方塊或通知使用者某些內容。

類宣告

以下是javax.swing.JOptionPane類的宣告 -

public class JOptionPane
   extends JComponent
      implements Accessible

欄位

以下是javax.swing.JOptionPane類的欄位 -

類建構函式

編號 建構函式 描述
1 JOptionPane() 使用測試訊息建立JOptionPane
2 JOptionPane(Object message) 以使用純文字訊息型別和UI提供的預設選項顯示訊息建立JOptionPane範例。
3 JOptionPane(Object message, int messageType) 以顯示具有指定訊息型別和預設選項的訊息建立JOptionPane範例
4 JOptionPane(Object message, int messageType, int optionType) 以顯示具有指定訊息型別和選項的訊息建立JOptionPane的範例。
5 JOptionPane(Object message, int messageType, int optionType, Icon icon) 建立JOptionPane的範例以顯示具有指定訊息型別,選項和圖示的訊息。
6 JOptionPane(Object message, int messageType, int optionType, Icon icon, Object[] options) 建立JOptionPane範例以顯示具有指定訊息型別,圖示和選項的訊息。
7 JOptionPane(Object message, int messageType, int optionType, Icon icon, Object[] options, Object initialValue) 以顯示具有指定訊息型別,圖示和選項的訊息,並指定最初選擇的選項以建立JOptionPane範例。

類方法

以下是javax.swing.JOptionPane類的方法 -

方法繼承

該類繼承以下類中的方法 -

  • javax.swing.JComponent
  • java.awt.Container
  • java.awt.Component
  • java.lang.Object

JOptionPane範例

使用編輯器建立以下Java程式:


import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class JOptionPaneExample {
    private JFrame mainFrame;
    private JLabel headerLabel;
    private JLabel statusLabel;
    private JPanel controlPanel;

    public JOptionPaneExample() {
        prepareGUI();
    }

    public static void main(String[] args) {
        JOptionPaneExample swingControlDemo = new JOptionPaneExample();
        swingControlDemo.showDialogDemo();
    }

    private void prepareGUI() {
        mainFrame = new JFrame("Java/Swing JOptionPane範例(tw511.com)");
        mainFrame.setSize(400, 400);
        mainFrame.setLayout(new GridLayout(3, 1));

        mainFrame.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent windowEvent) {
                System.exit(0);
            }
        });
        headerLabel = new JLabel("", JLabel.CENTER);
        statusLabel = new JLabel("", JLabel.CENTER);
        statusLabel.setSize(350, 100);

        controlPanel = new JPanel();
        controlPanel.setLayout(new FlowLayout());

        mainFrame.add(headerLabel);
        mainFrame.add(controlPanel);
        mainFrame.add(statusLabel);
        mainFrame.setVisible(true);
    }

    private void showDialogDemo() {
        headerLabel.setText("Control in action: JOptionPane");

        JButton okButton = new JButton("是");
        JButton javaButton = new JButton("是/否");
        JButton cancelButton = new JButton("是/否/取消");

        okButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showMessageDialog(mainFrame, "Welcome to tw511.com");
            }
        });
        javaButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                int output = JOptionPane.showConfirmDialog(mainFrame, "點選一個按鈕", "kaops.com",
                        JOptionPane.YES_NO_OPTION);

                if (output == JOptionPane.YES_OPTION) {
                    statusLabel.setText("選擇:'是'");
                } else if (output == JOptionPane.NO_OPTION) {
                    statusLabel.setText("選擇:'否'");
                }
            }
        });
        cancelButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                int output = JOptionPane.showConfirmDialog(mainFrame, "點選一個按鈕", "Kaops.com",
                        JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE);

                if (output == JOptionPane.YES_OPTION) {
                    statusLabel.setText("選擇:'是'");
                } else if (output == JOptionPane.NO_OPTION) {
                    statusLabel.setText("選擇:'否'");
                } else if (output == JOptionPane.CANCEL_OPTION) {
                    statusLabel.setText("選擇:'取消'");
                }
            }
        });
        controlPanel.add(okButton);
        controlPanel.add(javaButton);
        controlPanel.add(cancelButton);
        mainFrame.setVisible(true);
    }
}

執行上面範例程式碼,得到以下結果: