array of char in string code example
Example 1: Convert char array to string in java
public class CharArrayToString
{
public static void main(String[] args)
{
char[] charArray = new char[]{'F','l','o','w','e','r','B','r','a','c','k','e','t','s'};
String str = new String(charArray);
System.out.println(str);
}
}
Example 2: array of char to string in java
String x2 = "hello";
String newSortedString = "";
Object[] y = x2.toLowerCase()
.chars()
.sorted()
.mapToObj(i -> (char) i)
.toArray();
for (Object o: y) {
newSortedString = newSortedString.concat(o.toString());
}
System.out.println(newSortedString);