sorry to jump in here BUT DO NOT USE + concatenate strings!!!!
Use the StringBuffer!!
StringBuffer buffer = new StringBuffer();
buffer.append("xxx");
buffer.append("yyy");
buffer.toString();
I don't know why still so many developers just do not get it. One of the
very basics.
Sorry, when I see things like that I get a bit upset sometimes.