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
Actually, if you have Guava, you can use Chars.toArray() to produce char[] then simply send that result to String.valueOf().
Chars.toArray()
char[]
String.valueOf()