import java.io.*;/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */public class EnglishToChinese {  public String ToChinese(String str){
    String st="";
    try {
      st = new String(str.getBytes("ISO-8859-1"), "GBK");
    }
    catch (UnsupportedEncodingException ex) {
    }
       return st;
   }
}这样就可以了