Users Pricing

forum

home / developersection / forums / how do i compare strings in java?

How do I compare strings in Java?

Samuel Fernandes 2361 12 May 2015
I've been using the == operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug.

Is == bad? When should it and should it not be used? What's the difference?

1 Answers