转换一下:
public static String getStr(String str) 
  {
      try{
         String temp_p=str;
         byte[] temp_t=temp_p.getBytes("ISO8859_1");
         String temp=new String(temp_t);
         return temp;
        }
        catch(Exception e)
        {
            System.out.println(e.toString());
            return "null";
        }
      
  }