HOW TO CONVERT ASCII TO CHAR IN JAVA
843835May 24 2002 — edited May 24 2002i can covert the letter 'a' to number 97 using
String name = "abcd";
out.println(name.charAt(0) + " = ACII = " + (int)charAt(0));
//--> display a = ASCII = 97
ok ....
but how can i do reverse of this
i give the number and he returns to me the letter according to ascii value ??????????????
HELP !!!!!!!!!!!!!!!