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
First convert the Character[] to char[], and use String.valueOf(char[]) to get the String as below:
Character[]
char[]
String.valueOf(char[])
char[] a1 = new char[a.length]; for(int i=0; i