输出某种编码的字符串

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; 
}
上一篇:DIV相对定位


下一篇:Linux文件夹赋予drwxr-xr-x权限,不能执行删除,只能mv改名