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
int length = cArray.length; String val=""; for (int i = 0; i < length; i++) val += cArray[i]; System.out.println("String:\t"+val);