[EMAIL PROTECTED] wrote:

            for (int i = 0; i < stringChars.length; i++)
            {
                stringChars[i] = (char) stringBytes[i];
            }

What about replacement of loop with

System.arraycopy(stringBytes, 0, stringChars, 0, stringChars.length);

Would it work?

Regards
Michael

Reply via email to