例如:
通过url传递中文参数:xxx.do?name=名字&age=十八岁
解决办法:
1、在html页面,通过js的encodeURI方法对字符2次编码
encodeURI(encodeURI(jsonStr));
2、在后台进行解码
java.net.URLDecoder.decode(jsonStr, "UTF-8");
例如:
通过url传递中文参数:xxx.do?name=名字&age=十八岁
解决办法:
1、在html页面,通过js的encodeURI方法对字符2次编码
encodeURI(encodeURI(jsonStr));
2、在后台进行解码
java.net.URLDecoder.decode(jsonStr, "UTF-8");