aspose file tools
The moose likes Beginning Java and the fly likes GetText problem in a GUI Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "GetText problem in a GUI" Watch "GetText problem in a GUI" New topic
Author

GetText problem in a GUI

garfild Baram
Ranch Hand

Joined: Mar 24, 2003
Posts: 60
Hi,
I have a very very strange problem.
I created a GUI that contains a text box text1.
In my code I have the following line:
String LabelId = text1.getText().trim();
If (LabelId == null)
{
......
}
I didn't initialized text1 so i expected to enter the If statement but it didn't.
even
If (LabelId == "")
{
......
}
dosent put me inside the If!
What did I miss???
Please advise
garfild
Amol Desai
Ranch Hand

Joined: Jan 29, 2003
Posts: 82
Hi,
Try using
if (LabelId.equals(""))
{
......
}
Get back in case of any problems
garfild Baram
Ranch Hand

Joined: Mar 24, 2003
Posts: 60
It works as needed.
Thanks Amol
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: GetText problem in a GUI
 
Similar Threads
Wrapper
problem with inhereitance
using variables or input GUI components in SQL insert statement as arguments
How can I control a CPU usages?
Problem with FOR loop..Need Help ASAP...