有时候需要在url路径传递中文,但是却又不想在url上显示中文。可以使用js提供的encodeURI将路径进行编码操作。或者对指定的中文用encodeURIComponent进行编码。
中文显示问题解决了,我们从服务器上获取url数据时候,就要进行解码了。
第一种方法,就是通过new String(str.getBytes("iso-8859-1","UTF-8"))进行转码。
第二种方法,就是通过配置tomcat的server.xml文件:
就是加上URIEncoding="UTF-8" 这句参数了。
中文显示问题解决了,我们从服务器上获取url数据时候,就要进行解码了。
第一种方法,就是通过new String(str.getBytes("iso-8859-1","UTF-8"))进行转码。
第二种方法,就是通过配置tomcat的server.xml文件:
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8"/>
就是加上URIEncoding="UTF-8" 这句参数了。
Cyper(方法2实测通过)
来源:oschina
链接:https://my.oschina.net/u/113421/blog/166874