<%@ page contentType="text/html;charset=UTF-8" language="java" %>
加了上面还是不行,因为实际上页面编码类型还是默认的为:ISO-8859-1,没有改变。
在控制器加入下面代码,把传的值(temp)给转码就可以了。
try {
temp=new String(temp.getBytes("ISO8859_1"),"utf-8");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}