页面js(页面编码为utf-8)
var newStr = encodeURI('中文') ; //如果到action里面还是乱码就转两次 encodeURI(encodeURI('中文'))
将newStr传到action
action
String str = URLDecoder.decode(newStr, "utf-8") ;