string array to char array java code example

Example 1: java string to char array

String str = "example";
char[] ch = str.toCharArray();

Example 2: char array to string java

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

Example 3: convert string to char array in java

String str = "example";
char[] ch = str.toCharArray();

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

Tags:

Misc Example