|
There is a method in JOptionPane as
JOptionPane.showInputDialog(parentComponent, message, title, messageType)
where you can specify the title of the dialog too.
In your case you can do something like this:
String name = JOptionPane.showInputDialog(null, "Enter your name", "Enter name", JOptionPane.PLAIN_MESSAGE);
|