Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java JOptionPane default text

When I ask a user to enter a quantity for a program I have made using the code below, the default text is 3.

String input = JOptionPane.showInputDialog(null, "Please enter new quantity",
                                           JOptionPane.QUESTION_MESSAGE);

How do I change this?

like image 928
Harry Martland Avatar asked Jul 20 '11 13:07

Harry Martland


2 Answers

The method you have used is:

public static String showInputDialog(Component parentComponent,
                                     Object message,
                                     Object initialSelectionValue)

Here 3rd argument (initialSelectionValue) is default value in text field. You gave JOptionPane.QUESTION_MESSAGE as 3rd argument which is an int constant having value = 3. So you get 3 as a default value entered in text field.

Try this:

String input = JOptionPane.showInputDialog(null,
                "Please enter new quantity", "");

or this

String input = JOptionPane.showInputDialog(null,
                "Please enter new quantity", "Please enter new quantity",
                JOptionPane.QUESTION_MESSAGE);
like image 94
Harry Joy Avatar answered Nov 15 '22 18:11

Harry Joy


This way it will work:

String input = (String)JOptionPane.showInputDialog(null, "Please enter new quantity",
"Please enter new quantity", JOptionPane.QUESTION_MESSAGE,null,null,"default text");
like image 35
Tomás Marques Avatar answered Nov 15 '22 18:11

Tomás Marques