If you're building a string in Java (like in a loop), stop using the + operator! The String class is immutable (it can't be changed), so every time you use +, Java creates a brand new string object.