Maybe this is common knowledge, but you know never to do this right? String x = "a" + "b";
You have to do something like this:
StringBuffer b = new StringBuffer();
b.append("a");
b.append("b");
Using StringBuffer vastly improves performance.
Steve
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
