日期:2014-05-17 浏览次数:20938 次
public static String toChinese(String strvalue) {
try {
if (strvalue == null) {
return "";
} else {
strvalue = new String(strvalue.getBytes("utf-8"), "GBK");
return strvalue;
}
} catch (Exception e) {
return "";
}
}