charArray to string in java code example

Example 1: char array to string java

char[] a = {'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'};
String str = new String(a);

Example 2: char array to string

String string = String.valueOf(a);

Example 3: 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);

Example 4: char array to string in java

// Method 1: Using String object
      char[] ch = {'g', 'o', 'o', 'd', ' ', 'm', 'o', 'r', 'n', 'i', 'n', 'g'};
      String str = new String(ch);
      System.out.println(str);

Tags:

Misc Example