You can also use the String method concat(String str).

Just be sure that when you concatenate them, you do something like

str = str.concat(str2);

or

str = str + "a Message";