JOptionPaneTest3.java Source code

Java tutorial

Introduction

Here is the source code for JOptionPaneTest3.java

Source

import javax.swing.JDialog;
import javax.swing.JOptionPane;

public class JOptionPaneTest3 {
    public static void main(String[] args) {
        JDialog.setDefaultLookAndFeelDecorated(true);
        Object[] selectionValues = { "Pandas", "Dogs", "Horses" };
        String initialSelection = "Dogs";
        Object selection = JOptionPane.showInputDialog(null, "What are your favorite animals?", "Zoo Quiz",
                JOptionPane.QUESTION_MESSAGE, null, selectionValues, initialSelection);
        System.out.println(selection);
    }
}