比较两件事是行不通的
我的 Android 应用程序有一个奇怪的问题。我必须比较两个相等的字符串。我尝试过这个:
if (raspunsdata.equals(rok)) {
System.out.println("changed ");
} else
System.out.println("no change");
}
但我总是“没有变化”。在此之前,我对两个字符串都有 System.out.println,并且它们都具有相同的值。
我也尝试了 (raspunsdata==rok)
和 raspunsdata.contentEquals(rok)
但我也遇到了同样的问题。为什么?我无法理解这个。,...请帮忙...
I have a strange problem in my android app. I must compare two string which are equals. I tried this :
if (raspunsdata.equals(rok)) {
System.out.println("changed ");
} else
System.out.println("no change");
}
but I get always "no change". Before this I have System.out.println for both strings, and both of them have the same value.
I tried also (raspunsdata==rok)
and raspunsdata.contentEquals(rok)
but I have the same problem. Why? I cant understand this.,...please help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能有不需要的空白。可能需要使用修剪功能来确定。
Btw equals 是检查值是否相同的正确方法。
You might have unwanted white spaces. Might need to use the trim function just to make sure.
Btw equals is the correct way to check whether the values are the same.
.equals - 比较两个对象的值。如果你有 2 个具有相同字符集的字符串,.equals 将返回 true;
== - 比较两个对象引用是否相等。
例如:
a == b - 为真。
尝试阅读: http://www.devdaily.com/java/edu/qanda/ pjqa00001.shtml
.equals - compares the values of both objects. If you have 2 Strings with the same characters sets .equals will return true;
== - compares if two objects references are equal.
For example:
a == b - will be true.
Try reading: http://www.devdaily.com/java/edu/qanda/pjqa00001.shtml