Display a question message in Java
Description
The following code shows how to display a question message.
Example
/* ww w . java2s. c o m*/
import javax.swing.JOptionPane;
public class Main {
public static void main(String[] args) {
JOptionPane.showMessageDialog(null, "Are you sure to quit?", "Question",
JOptionPane.QUESTION_MESSAGE);
}
}
The code above generates the following result.
Home »
Java Tutorial »
Swing »
Java Tutorial »
Swing »