当前位置: 代码迷 >> JavaScript >> jsp传接url中文参数乱码
  详细解决方案

jsp传接url中文参数乱码

热度:73   发布时间:2012-11-09 10:18:47.0
jsp传递url中文参数乱码
要用两次encode。
js中是encodeURI,
java中是java.net.URLEncode.encode(string,encode);
decode只用一个就行了。java.net.URLDecode.decode(string,encode);
  相关解决方案