}
}
private int getCnAscii(char cn) {
byte[] bytes = null;
try{
bytes = (String.valueOf(cn)).getBytes("GB2312");
} catch (Exception e) {e.printStackTrace();}
if (bytes == null || bytes.length > 2 || bytes.length <= 0)
{
return 0;
}
if (bytes.length == 1)
{
return bytes[0];
}
else
{
int hightByte = 256 + bytes[0];
int lowByte = 256 + bytes[1];
int ascii = (256 * hightByte + lowByte) - 256 * 256;
return ascii;
}
}
private String getSpellByAscii(int ascii) {
if (asc