JOptionPane.showInputDialog question?
String a = JOptionPane.showInputDialog("Enter something");
if ( a ==null)
dothis
elseif ( a.equals("\u2422"))//well it's not the blank character...
dothis
else
dothis
I just want to catch if nothing is entered and loop the prompt, it's proven to be more difficult than I thought... When the user doesn't input anything and just presses "OK", what value is assigned to String a?

