You should use string equals to compare two strings for equality, not operator == which just compares the references .
Read moreWhich is the best way to compare two strings?
Using String. equals() :In Java, string equals() method compares the two given strings based on the data/content of the string. If all the contents of both the strings are same then it returns true.29 Mar 2020
Read moreCan we use == to compare strings in Java?
Example 2: Compare two strings using equals() To compare these strings in Java, we need to use the equals() method of the string. You should not use == (equality operator) to compare these strings because they compare the reference of the string, i.e. whether they are the same object or not .
Read more