public static String toChinese(String strValue){
String strChvalue = "";
try{
if(strValue!=null &&
strValue.length>0){
strChvalue = new String(strValue.getBytes("ISO8859_1"),"GB2312");
}
else
{
strChvalue = strValue;
}
}
catch(Exception e){
System.out.println(e.toString());
}
return strChvalue;
}