Mega Code Archive
To extract Ascii codes from a String
public class Main {
public static void main(String[] args) throws Exception {
String test = "ABCD";
for (int i = 0; i < test.length(); ++i) {
char c = test.charAt(i);
System.out.println((int) c);
}
}
}
/*
65
66
67
68
*/