Convert an integer to an array of characters : java

int i = 1234;
char[] chars = ("" + i).toCharArray();

Leave a Comment