Int To Char Array Java Code Example


Example 1: java string to char array

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

Example 2: int to char java

int c=123;  String s = Integer.toString(c); for(char ch: s.toCharArray())     System.out.print(ch+",");

Example 3: convert from integer to character java

char a = (char) 65;

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable