public 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)
{e.printStackTrace();}
return "null";
}
请问下这个方法什么情况下会返回null啊 什么情况下返回temp