前台后台中文乱码问题

前台JS:
var vtitle=$("#searchProgText").attr("value");  //中文参数
vtitle=encodeURI(encodeURI(vtitle));   //使用两次 encodeURI()  

后台JAVA:

request部分
String title = request.getParameter("title");  //中文参数
title = URLDecoder.decode(title, "utf-8");  //转码

你可能感兴趣的:(前台后台中文乱码问题)