I just want to convert an integer...say 8....to a char...which will be '8'.
int z = 5; char e; e = Character.forDigit(z,10); //e should become '5'
This is really weird...when i use the debugger the value of e will be correct...other times it will be blank...is there another way to do this conversion?