答: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;
}
web應(yīng)用開發(fā)過程中經(jīng)常遇到輸出某種編碼的字符,如io8859-1等,如何輸出一個某種編碼的字符串來源:北京達內(nèi)教育 時間:2023-05-26 熱度:25℃ 返回列表
答: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; } |