get请求中文的处理方法

方法1:修改tomcat配置文件

server.xml中,可以在默认端口的一行末尾,添加:URIEncoding="UTF-8"


方法2:

编码:

encodeURI();

var userName= encodeURI("user");

var passWrod = encodeURI("pass");

解码:

URIDecoder.decode(user.getUserName(),"UTF-8");

URLDecoder.decode(user.getUserName(),"UTF-8");


你可能感兴趣的:(中文,配置文件)