1. 程式人生 > >處理中文字串的函式

處理中文字串的函式

處理中文字串的函式

<%!public String codeToString(String str) {//處理中文字串的函式
		String s = str;
		try {
			byte tempB[] = s.getBytes("ISO-8859-1");
			s = new String(tempB);
			return s;
		} catch (Exception e) {
			return s;
		}
	}%>