Public String translate (String str) {
String tempStr = "";
try {
tempStr = new String(str.getBytes( "ISO-8859-1"), "GBK");
tempStr = tempStr.trim();
}
catch (Exception e) {
System.err.println(e.getMessage());
}
return tempStr;
}
String tempStr = "";
try {
tempStr = new String(str.getBytes( "ISO-8859-1"), "GBK");
tempStr = tempStr.trim();
}
catch (Exception e) {
System.err.println(e.getMessage());
}
return tempStr;
}
本文转自sucre03 51CTO博客,原文链接:http://blog.51cto.com/sucre/353628,如需转载请自行联系原作者