java check if 2 strings are equal code example
Example 1: java how to compare strings
System.out.println("hey".equals("hey"));
Example 2: how to check to string are qual r not
String str1 = "rohith";
String str2 = "nikhil";
System.out.println(str1.equals(str2));
Example 3: how to compare strings java
if (aName.equals(anotherName))
{
System.out.println(aName + " equals " + anotherName);
}
else
{
System.out.println(aName + " does not equal " +anotherName );
}
Example 4: how to know if String is the same java
String1.equals(String2)