Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Strings don't seem to be equal in Java on Android, even though they print the same

I've got a problem that I'm rather confused about. I have the following lines of code in my android application:

System.out.println(CurrentNode.getNodeName().toString());
if (CurrentNode.getNodeName().toString() == "start") {
    System.out.println("Yes it does!");
} else {
    System.out.println("No it doesnt");
}

When I look at the output of the first println statement it shows up in LogCat as "start" (without the quotes obviously). But then when the if statement executes it goes to the else statement and prints "No it doesn't".

I wondered if the name of the node might have some kind of non-printing character in it, so I've checked the length of the string coming from getNodeName() and it is 5 characters long, as you would expect.

Has anyone got any idea what's going on here?

like image 418
robintw Avatar asked Apr 24 '10 15:04

robintw


2 Answers

Use String's equals method to compare Strings. The == operator will just compare object references.

if ( CurrentNode.getNodeName().toString().equals("start") ) {
   ...
like image 136
Bill the Lizard Avatar answered Sep 24 '22 14:09

Bill the Lizard


Use CurrentNode.getNodeName().toString().equals("start").

In Java, one of the most common mistakes newcomers meet is using == to compare Strings. You have to remember, == compares the object identity (Think memory addresses), not the content.

like image 21
Xavier Ho Avatar answered Sep 20 '22 14:09

Xavier Ho