public String getStr(String str)
{
String temp=null;
try
{
String temp_p=str;
byte[] temp_t=temp_p.getBytes("ISO8859-1");
temp=new String(temp_t,"gb2312");

}
catch(Exception e)
{
System.out.print("GBK ERROR IS:"+e);
}
return temp;
}