public String ciso(String str1){
             String str="";
             try{
                  str=new String(str1.getBytes("gb2312"),"ISO8859_1");
                 }
             catch(Exception e)
                {str=str1;}
             return str;
             }