| Author |
Comparing Strings
|
Michael Crump
Greenhorn
Joined: Jan 26, 2009
Posts: 1
|
|
I'm trying to get some input using JOptionPane. I want the user to enter a string and if this string is equal to the string I'm looking for I want to execute some code.
The problem is I'm unsure how to do this. I've tried the following.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56521
|
|
|
"mesmer surprise", please check your private messages for an important administrative matter.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Gamini Sirisena
Ranch Hand
Joined: Aug 05, 2008
Posts: 347
|
|
Doesn't it work for you?
If not can you post two sample strings that you are using?
|
 |
Senthil Kumar
Greenhorn
Joined: Jul 17, 2007
Posts: 21
|
|
Hi Friend !!. Its simple
Use showInputDialog() in JOptionPane to get String
showInputDialog() has different method signatures other than i have used. please see javadoc .
|
Preparing for SCJP 1.6
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19230
|
|
Senthil Kumar wrote:
I'd change that to
, or at least
JOptionPane.showInputDialog returns null if the user presses Cancel, so your code would throw a NullPointerException if that woud occur.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Senthil Kumar
Greenhorn
Joined: Jul 17, 2007
Posts: 21
|
|
Friend , I am not giving you the Exact Code.
I gave you an Example. you have to write events for that.
Please have a look on this
http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JOptionPane.html
http://faq.javaranch.com/java/NotACodeMill
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19230
|
|
|
I know, but my warning is to prevent any unexpected errors when Michael just copies your little example and is not aware of the possible NullPointerException.
|
 |
Senthil Kumar
Greenhorn
Joined: Jul 17, 2007
Posts: 21
|
|
Rob Prime wrote:I know, but my warning is to prevent any unexpected errors when Michael just copies your little example and is not aware of the possible NullPointerException.
Okay Rob
|
 |
 |
|
|
subject: Comparing Strings
|
|
|