页面到action中文乱码

页面js(页面编码为utf-8)

var newStr = encodeURI('中文') ; //如果到action里面还是乱码就转两次 encodeURI(encodeURI('中文'))

将newStr传到action

 

action

String str = URLDecoder.decode(newStr, "utf-8") ;

 

posted @ 2013-11-29 14:56  行-云  阅读(194)  评论(0编辑  收藏  举报