在Android中,判断两个字符串是否相等可以使用equals()方法或者equalsIgnoreCase()方法。
- 使用equals()方法:该方法用于比较两个字符串是否相等,严格区分大小写。
String str1 = "hello";
String str2 = "world";
if(str1.equals(str2)){
// 字符串相等
}else{
// 字符串不相等
}
- 使用equalsIgnoreCase()方法:该方法用于比较两个字符串是否相等,忽略大小写。
String str1 = "Hello";
String str2 = "hello";
if(str1.equalsIgnoreCase(str2)){
// 字符串相等
}else{
// 字符串不相等
}
需要注意的是,对于空字符串或者null值的比较,最好先进行判空处理,以避免出现空指针异常。
String str1 = "hello";
String str2 = null;
if(str1 != null && str1.equals(str2)){
// 字符串相等
}else{
// 字符串不相等
}