使用如下方法转换:
//显示中文,从sybase读出后转换
     public static String switchChinese(String str){
         try{
             String temp;
             byte[] temp_byte = str.getBytes("ISO8859-1");
             temp = new String(temp_byte, "gb2312");
             return temp;
         } catch (Exception e){
             return null;
         }
//      return str;
     }