List of utility methods to do String Single Byte Check
boolean | isAllSingleByte(String str) is All Single Byte if (str != null) { int len = str.length(); int i = 0; byte[] b; try { b = str.getBytes("GBK"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); ... |