当前位置: 代码迷 >> J2SE >> 想实现中文字符的转换。大家帮小弟我看下
  详细解决方案

想实现中文字符的转换。大家帮小弟我看下

热度:186   发布时间:2016-04-24 16:07:23.0
想实现中文字符的转换。大家帮我看下
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 ";
}
}

谢谢

------解决方案--------------------
public class String Convert
{
public String getString(String str)
{
try{
String temp=new String(str.getBytes( "iso-8859-1 "),( "gb2312 ");
return temp;
}
catch(Exception e){}
return null;
}
}
  相关解决方案