- Public String translate (String str) {
- String tempStr = "";
- try {
- tempStr = new String(str.getBytes("ISO-8859-1"), "GBK");
- //这个意思是把iso-8859-1转换成Gbk了吗?
- tempStr = tempStr.trim();
- } catch (Exception e) {
- System.err.println(e.getMessage());
- }
- return tempStr;
- }
复制代码 |
|