Java Utililty Methods String to Chinese Big5

List of utility methods to do String to Chinese Big5

Description

The list of methods to do String to Chinese Big5 are organized into topic(s).

Method

StringtoBig5(String s)
Encode the string to Big5
if (s != null && s.length() > 0) {
    byte[] byteTmp = s.getBytes("BIG5");
    s = new String(byteTmp, "GBK");
return s;