我试图将 2 个字符串与代码进行比较:
public class MyClass
{
public static void main(String args[])
{
String xhex="31 38 30 2E 32 35 35 2E 32 32 35 2E 31 32 33";
String hex = remspace(xhex).trim().toString();
System.out.println(hex);
String hex1="3138302E3235352E3232352E313233";
System.out.println(hex1);
if(hex.trim().equalsIgnoreCase(hex1.trim()))
//if (hex.equals(hex1))
{
System.out.println("equals");
}else
{
System.out.println("not equals");
}
}
private static String remspace(String data)
{
String xdata = null;
char c='\0';
String hex = data.replace(' ',c);
return hex;
}
}
结果是:
3138302E3235352E3232352E313233
3138302E3235352E3232352E313233
not equals
正如我们所看到的,结果完全相同,但是当我尝试使用 equals 比较字符串时,结果不等于。知道为什么它被认为不等于?