1、jsp页面中使用javascript自带的encodeURIComponent()或者encodeURI()函数对要进行提交的中文内容进行编码;
2、后台java处理代码使用java.net.URLDecoder类的decode方法对前台提交过来的已编码中文内容进行解码URLDecoder.decode(request.getParameter(“content”),“utf-8″);
具体示例:
$.ajax({
url: “”,
data: {
content: encodeURI(“中文内容”)
},
type: ‘post’,
contentType: ‘application/x-www-form-urlencoded;charset=UTF-8′,
success: function(data){
}
});
java.net.URLDecoder.decode(request.getParameter(“content”),“utf-8″);
原文链接:https://www.f2er.com/ajax/163162.html