1.在页面中对你的URL进行编码
使用------encodeURI(你要使用的中文参数值)如:...?username"+encodeURI(“小甜甜")
2.在后台通过解码来接收该中文参数
使用----String name = new String(request.getParameter("username ").getBytes("iso8859-1"),"utf-8")
3.最好不要在URL中传递中文参数
1,在发送端页面用encodeURI()函数,在接收端页面使用decodeURI()函数,这样就可以有效的解决在获取url上的中文出现乱码的情况
例子:
var url = encodeURL(url) // 发送端页面。
var url = decodeURL(window.location.href) // 接收端页面。