try {
for(int i = 65; i < 91; i++) {
String str = Integer.toString(i);
byte [] chr = new byte[] { Byte.parseByte(str) };
String letter = new String(chr, "UTF-8");
//System.out.print(letter);
}
}
catch(UnsupportedEncodingException ex) { System.out.println(ex.toString()); }
catch(NumberFormatException ex) { System.out.println(ex.toString()); }