check string equal in java code example

Example 1: 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 2: how to know if String is the same java

String1.equals(String2)

Example 3: java test if strings are equal

//This expression is true if str1 and str2 are equal, and false if they're not
str1.equals(str2)

//example use case:
String location = "London";
String destination = "London";
if (location.equals(destination)) {
	System.out.println("You have arrived!");
}

Example 4: in java how to compare two strings

class scratch{
    public static void main(String[] args) {
        String str1 = "Nyello";
        String str2 = "Hello";
        String str3 = "Hello";

        System.out.println( str1.equals(str2) ); //prints false
        System.out.println( str2.equals(str3) ); //prints true
    }
}