黑马程序员技术交流社区
标题:
输出某种编码的字符、编译可以、运行错误
[打印本页]
作者:
彭小康
时间:
2012-12-10 16:27
标题:
输出某种编码的字符、编译可以、运行错误
代码如下:
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;
}
作者:
许庭洲
时间:
2012-12-11 08:10
值得学习ing!
作者:
王进亮
时间:
2012-12-20 16:38
public String translate (String str) {//public 中p要小写
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;
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2