List of utility methods to do String to Chinese Big5
if (s != null && s.length() > 0) { byte[] byteTmp = s.getBytes("BIG5"); s = new String(byteTmp, "GBK"); return s;