public class String Convert
{
public String getString(String str)
{
try{
String temp_p=str;
String temp=new String(temp_p.getBytes("iso-8859-1"),("gb2312");
return temp;
}
catch(Exception e){}
return "NULL";
}
}谢谢