how to add char array to list in java code example
Example: char array to arraylist java
myString.chars().mapToObj(c -> (char) c).collect(Collectors.toList());
myString.chars().mapToObj(c -> (char) c).collect(Collectors.toList());