I have a Character array (not char array) and I want to convert it into a string by combining all the Characters in the array.
Character
I have tried the following f
Character[] a = ... new String(ArrayUtils.toPrimitive(a));
ArrayUtils is part of Apache Commons Lang.
ArrayUtils