How to compare String equality in Java
By Alvin Alexander. Last updated: March 30 2017
Java String comparison FAQ: Can you share some examples of how to compare strings in Java?
If you’re like me, when I first started using Java, I wanted to use the ==
operator to test whether two String
instances were equal, but that’s not the correct way to do it in Java.