GET方法URL中传递中文参数乱码的解决方法
程序员文章站
2023-08-13 23:10:46
1.在页面中对你的url进行编码 使用------encodeuri(你要使用的中文参数值)如:...?username"+encodeuri(“小甜甜") 2.在后台通过...
1.在页面中对你的url进行编码
使用------encodeuri(你要使用的中文参数值)如:...?username"+encodeuri(“小甜甜")
2.在后台通过解码来接收该中文参数
使用----string name = new string(request.getparameter("username ").getbytes("iso8859-1"),"utf-8")
3.最好不要在url中传递中文参数
使用------encodeuri(你要使用的中文参数值)如:...?username"+encodeuri(“小甜甜")
2.在后台通过解码来接收该中文参数
使用----string name = new string(request.getparameter("username ").getbytes("iso8859-1"),"utf-8")
3.最好不要在url中传递中文参数