1. 程式人生 > >【Java】form表單提交中文亂碼

【Java】form表單提交中文亂碼

如果框架沒有支援的話,自己在Java 後端做一下轉碼操作也可以解決:

    		// new String(byte[] target, String characterSet) 將目標位元組陣列target 以指定編碼集 characterSet 重組字串
    		// String.getBytes(String characterSet) 使用指定編碼集characterSet 將字串轉為位元組陣列
    		String content = request.getParameter("content");
    		content = new String(content.getBytes("ISO-8859-1"), "UTF-8");


End .